dns stub resolver: increase buffer size to handle chained CNAMEs
[musl] / include / poll.h
index 5979f7a..472e4b8 100644 (file)
@@ -24,12 +24,11 @@ extern "C" {
 #ifndef POLLMSG
 #define POLLMSG    0x400
 #define POLLRDHUP  0x2000
-#define
+#endif
 
 typedef unsigned long nfds_t;
 
-struct pollfd
-{
+struct pollfd {
        int fd;
        short events;
        short revents;
@@ -45,6 +44,12 @@ int poll (struct pollfd *, nfds_t, int);
 int ppoll(struct pollfd *, nfds_t, const struct timespec *, const sigset_t *);
 #endif
 
+#if _REDIR_TIME64
+#ifdef _GNU_SOURCE
+__REDIR(ppoll, __ppoll_time64);
+#endif
+#endif
+
 #ifdef __cplusplus
 }
 #endif