summaryrefslogtreecommitdiff
path: root/src/sys/times/struct_tms.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sys/times/struct_tms.h')
-rw-r--r--src/sys/times/struct_tms.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/sys/times/struct_tms.h b/src/sys/times/struct_tms.h
new file mode 100644
index 00000000..8e70958b
--- /dev/null
+++ b/src/sys/times/struct_tms.h
@@ -0,0 +1,12 @@
+#include <sys/times.h>
+
+struct tms {
+ clock_t tms_utime;
+ clock_t tms_stime;
+ clock_t tms_cutime;
+ clock_t tms_cstime;
+};
+
+/*
+POSIX(1)
+*/