Selaa lähdekoodia

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.
Rich Felker 10 vuotta sitten
vanhempi
sitoutus
9c3da8968d
1 muutettua tiedostoa jossa 2 lisäystä ja 0 poistoa
  1. 2 0
      include/sys/timerfd.h

+ 2 - 0
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 *);