projects
/
oweals
/
musl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
91a3bd7
)
declare incomplete type struct itimerspec in timerfd.h
author
Rich Felker
<dalias@aerifal.cx>
Wed, 4 Mar 2015 19:38:08 +0000
(14:38 -0500)
committer
Rich Felker
<dalias@aerifal.cx>
Wed, 4 Mar 2015 19:38:08 +0000
(14:38 -0500)
normally time.h would provide a definition for this struct, but
depending on the feature test macros in use, it may not be exposed,
leading to warnings when it's used in the function prototypes.
include/sys/timerfd.h
patch
|
blob
|
history
diff --git
a/include/sys/timerfd.h
b/include/sys/timerfd.h
index df645fe8aef564a9de722bfad66e3c424b22705c..9724d903472c52b5ec4528604816c9601047e317 100644
(file)
--- a/
include/sys/timerfd.h
+++ b/
include/sys/timerfd.h
@@
-13,6
+13,8
@@
extern "C" {
#define TFD_TIMER_ABSTIME 1
+struct itimerspec;
+
int timerfd_create(int, int);
int timerfd_settime(int, int, const struct itimerspec *, struct itimerspec *);
int timerfd_gettime(int, struct itimerspec *);