diff options
Diffstat (limited to 'src/include/sys/times.h')
-rw-r--r-- | src/include/sys/times.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/include/sys/times.h b/src/include/sys/times.h new file mode 100644 index 0000000..68d5bfb --- /dev/null +++ b/src/include/sys/times.h | |||
@@ -0,0 +1,15 @@ | |||
1 | #ifndef _TIMES_H | ||
2 | #define _TIMES_H | ||
3 | |||
4 | #include <sys/types.h> | ||
5 | |||
6 | struct tms { | ||
7 | time_t tms_utime; | ||
8 | time_t tms_stime; | ||
9 | time_t tms_cutime; | ||
10 | time_t tms_cstime; | ||
11 | }; | ||
12 | |||
13 | extern time_t times(struct tms * tp); | ||
14 | |||
15 | #endif | ||