home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / mac / developm / librarie / posix10.sit / POSIX / ThinkCPosix / sys_times.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-09-11  |  130 b   |  11 lines

  1. /* $Id: $ */
  2.  
  3. #pragma once
  4.  
  5. struct tms {
  6.   clock_t tms_utime;
  7.   clock_t tms_stime;
  8.   clock_t tms_cutime;
  9.   clock_t tms_cstime;
  10. };
  11.