diff options
Diffstat (limited to 'src/sys/resource/struct_rusage.h')
-rw-r--r-- | src/sys/resource/struct_rusage.h | 10 |
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) +*/ |