home *** CD-ROM | disk | FTP | other *** search
- /* sys/times.h (emx+gcc) */
-
- #if !defined (_SYS_TIMES_H)
- #define _SYS_TIMES_H
-
- #if defined (__cplusplus)
- extern "C" {
- #endif
-
- struct tms
- {
- time_t tms_utime;
- time_t tms_stime;
- time_t tms_cutime;
- time_t tms_cstime;
- };
-
- long times (struct tms *buffer);
-
- #if defined (__cplusplus)
- }
- #endif
-
- #endif /* !defined (_SYS_TIMES_H) */
-