1 2 3 4 5 6 7 8 9 10 11
#ifndef _SYS_RESOURCE_H #define _SYS_RESOURCE_H 1 #include <time.h> struct rusage { struct timeval ru_utime; struct timeval ru_stime; }; #endif