summaryrefslogtreecommitdiff
path: root/src/sys/resource/struct_rusage.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sys/resource/struct_rusage.h')
-rw-r--r--src/sys/resource/struct_rusage.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/sys/resource/struct_rusage.h b/src/sys/resource/struct_rusage.h
new file mode 100644
index 00000000..55141b1f
--- /dev/null
+++ b/src/sys/resource/struct_rusage.h
@@ -0,0 +1,10 @@
+#include <sys/resource.h>
+
+struct rusage {
+ struct timeval ru_utime;
+ struct timeval ru_stime;
+};
+
+/*
+XOPEN(400)
+*/