math: fix i386/expl.s with more precise x*log2e
[musl] / include / sys / timerfd.h
1 #ifndef _SYS_TIMERFD_H
2 #define _SYS_TIMERFD_H
3
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7
8 #include <time.h>
9
10 int timerfd_create(int, int);
11 int timerfd_settime(int, int, const struct itimerspec *, struct itimerspec *);
12 int timerfd_gettime(int, struct itimerspec *);
13
14 #ifdef __cplusplus
15 }
16 #endif
17
18 #endif