|
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)
|
|---|
| 7 | extern "C" {
|
|---|
| 8 | #endif
|
|---|
| 9 |
|
|---|
| 10 | #if !defined (_CLOCK_T)
|
|---|
| 11 | #define _CLOCK_T
|
|---|
| 12 | typedef long clock_t;
|
|---|
| 13 | #endif
|
|---|
| 14 |
|
|---|
| 15 | struct tms
|
|---|
| 16 | {
|
|---|
| 17 | clock_t tms_utime;
|
|---|
| 18 | clock_t tms_stime;
|
|---|
| 19 | clock_t tms_cutime;
|
|---|
| 20 | clock_t tms_cstime;
|
|---|
| 21 | };
|
|---|
| 22 |
|
|---|
| 23 | long 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.