fix the type of CLOCKS_PER_SEC to match new clock_t type
[musl] / src / linux / timerfd.c
1 #include <sys/timerfd.h>
2 #include "syscall.h"
3
4 int timerfd_create(int clockid, int flags)
5 {
6         return syscall(SYS_timerfd_create, clockid, flags);
7 }
8
9 int timerfd_settime(int fd, int flags, const struct itimerspec *new, struct itimerspec *old)
10 {
11         return syscall(SYS_timerfd_settime, fd, flags, new, old);
12 }
13
14 int timerfd_gettime(int fd, struct itimerspec *cur)
15 {
16         return syscall(SYS_timerfd_gettime, fd, cur);
17 }