author | Rich Felker <dalias@aerifal.cx> | 2024年02月08日 14:44:00 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2024年02月08日 21:57:38 -0500 |
commit | cf91e9b3937dc354b702c8ac1b6135bd818154ba (patch) | |
tree | cec64aa9f47b03726548518c7330911a04a3963d /include/poll.h | |
parent | 39838619bb8b65a8897abcfda8c17ad6de0115d8 (diff) | |
download | musl-cf91e9b3937dc354b702c8ac1b6135bd818154ba.tar.gz |
-rw-r--r-- | include/poll.h | 4 |
diff --git a/include/poll.h b/include/poll.h index bf9cb99a..272dc34a 100644 --- a/include/poll.h +++ b/include/poll.h @@ -36,7 +36,7 @@ struct pollfd { int poll (struct pollfd *, nfds_t, int); -#ifdef _BSD_SOURCE +#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE) #define __NEED_time_t #define __NEED_struct_timespec #define __NEED_sigset_t @@ -45,7 +45,7 @@ int ppoll(struct pollfd *, nfds_t, const struct timespec *, const sigset_t *); #endif #if _REDIR_TIME64 -#ifdef _BSD_SOURCE +#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE) __REDIR(ppoll, __ppoll_time64); #endif #endif |