diff options
Diffstat (limited to 'klibc/include/sys/times.h')
-rw-r--r-- | klibc/include/sys/times.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/klibc/include/sys/times.h b/klibc/include/sys/times.h new file mode 100644 index 0000000000..657f9c4b1c --- /dev/null +++ b/klibc/include/sys/times.h @@ -0,0 +1,14 @@ +/* + * sys/times.h + */ + +#ifndef _SYS_TIMES_H +#define _SYS_TIMES_H + +#include <linux/times.h> + +__extern clock_t times(struct tms *); +__extern int gettimeofday(struct timeval *, struct timezone *); +__extern int settimeofday(const struct timeval *, const struct timezone *); + +#endif /* _SYS_TIMES_H */ |