/* bits/rusage.h: The rusage structure. */ #ifndef _BITS_RUSAGE_H #define _BITS_RUSAGE_H #include struct rusage { struct timeval ru_utime; struct timeval ru_stime; }; #define RUSAGE_SELF 0 #define RUSAGE_CHILDREN 1 #endif