chiark / gitweb /
[PATCH] sync with latest version of klibc (0.107)
[elogind.git] / klibc / klibc / include / sys / time.h
1 /*
2  * sys/time.h
3  */
4
5 #ifndef _SYS_TIME_H
6 #define _SYS_TIME_H
7
8 #include <klibc/extern.h>
9 #include <sys/types.h>
10 #include <linux/time.h>
11
12 __extern int gettimeofday(struct timeval *, struct timezone *);
13 __extern int settimeofday(const struct timeval *, const struct timezone *);
14 __extern int getitimer(int, struct itimerval *);
15 __extern int setitimer(int, const struct itimerval *, struct itimerval *);
16
17 #endif /* _SYS_TIME_H */