home *** CD-ROM | disk | FTP | other *** search
/ ANews 3 / AnewsCD3.iso / DP / Programmation / GCC / gcc_include / sys / times.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-03-08  |  266 b   |  20 lines

  1. /*    system times for ansic.library        */
  2. /*    (c)Copyright 1992 Davide Pasetto     */
  3.  
  4. #ifndef _SYS_TIMES_H
  5. #define _SYS_TIMES_H
  6.  
  7. /* #include <sys/time.h> */
  8.  
  9.  
  10. struct tms {
  11.   unsigned long tms_utime;
  12.   unsigned long tms_stime;
  13. };
  14.  
  15. #define HZ 50
  16.  
  17. #endif /* _SYS_TIMES_H */
  18.  
  19.  
  20.