source: vendor/emx/current/include/sys/times.h

Last change on this file was 18, checked in by bird, 23 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 387 bytes
Line 
1/* sys/times.h (emx+gcc) */
2
3#ifndef _SYS_TIMES_H
4#define _SYS_TIMES_H
5
6#if defined (__cplusplus)
7extern "C" {
8#endif
9
10#if !defined (_CLOCK_T)
11#define _CLOCK_T
12typedef long clock_t;
13#endif
14
15struct tms
16{
17 clock_t tms_utime;
18 clock_t tms_stime;
19 clock_t tms_cutime;
20 clock_t tms_cstime;
21};
22
23long times (struct tms *);
24
25#if defined (__cplusplus)
26}
27#endif
28
29#endif /* not _SYS_TIMES_H */
Note: See TracBrowser for help on using the repository browser.