root/include/sys/times.h

/* [previous][next][first][last][top][bottom][index][help] */

INCLUDED FROM


   1 #ifndef _TIMES_H
   2 #define _TIMES_H
   3 
   4 #include <sys/types.h>
   5 
   6 struct tms {
   7         time_t tms_utime;
   8         time_t tms_stime;
   9         time_t tms_cutime;
  10         time_t tms_cstime;
  11 };
  12 
  13 extern time_t times(struct tms * tp);
  14 
  15 #endif

/* [previous][next][first][last][top][bottom][index][help] */