diff options
Diffstat (limited to 'klibc/include/sys/time.h')
-rw-r--r-- | klibc/include/sys/time.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/klibc/include/sys/time.h b/klibc/include/sys/time.h new file mode 100644 index 0000000000..2767a1bce3 --- /dev/null +++ b/klibc/include/sys/time.h @@ -0,0 +1,18 @@ +/* + * sys/time.h + */ + +#ifndef _SYS_TIME_H +#define _SYS_TIME_H + +#include <klibc/extern.h> +#include <sys/types.h> +#include <linux/time.h> + +__extern int gettimeofday(struct timeval *, struct timezone *); +__extern int settimeofday(const struct timeval *, const struct timezone *); +__extern int getitimer(int, struct itimerval *); +__extern int setitimer(int, const struct itimerval *, struct itimerval *); +__extern int utimes(const char *, const struct timeval *); + +#endif /* _SYS_TIME_H */ |