diff options
author | Rich Felker <dalias@aerifal.cx> | 2015-03-04 14:38:08 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2015-03-04 14:38:08 -0500 |
commit | 9c3da8968d5c811452c575b3918fceaf561e5089 (patch) | |
tree | f974dfb1e66fcc52b3870dd0ee830b789875d975 | |
parent | 91a3bd743e91604bde83e9ce1ad3a2e2d4ff0f0f (diff) | |
download | musl-9c3da8968d5c811452c575b3918fceaf561e5089.tar.gz musl-9c3da8968d5c811452c575b3918fceaf561e5089.tar.xz musl-9c3da8968d5c811452c575b3918fceaf561e5089.zip |
declare incomplete type struct itimerspec in timerfd.h
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.
-rw-r--r-- | include/sys/timerfd.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/sys/timerfd.h b/include/sys/timerfd.h index df645fe8..9724d903 100644 --- 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 *); |