diff options
Diffstat (limited to 'src/linux/timerfd.c')
-rw-r--r-- | src/linux/timerfd.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/linux/timerfd.c b/src/linux/timerfd.c index 5bdfaf16..b3576fdc 100644 --- a/src/linux/timerfd.c +++ b/src/linux/timerfd.c @@ -57,3 +57,11 @@ int timerfd_gettime(int fd, struct itimerspec *cur) #endif return syscall(SYS_timerfd_gettime, fd, cur); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |