skip bsd-poll.h if poll.h found; ok dtucker

This commit is contained in:
Damien Miller 2022-10-10 12:32:43 +11:00
parent 5ee2b8ccfc
commit c64b62338b
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@
# include <poll.h>
#elif HAVE_SYS_POLL_H
# include <sys/poll.h>
#endif
#else
#ifndef HAVE_STRUCT_POLLFD_FD
typedef struct pollfd {
@ -73,5 +73,5 @@ int poll(struct pollfd *, nfds_t, int);
#ifndef HAVE_PPOLL
int ppoll(struct pollfd *, nfds_t, const struct timespec *, const sigset_t *);
#endif
#endif /* !HAVE_POLL_H && !HAVE_SYS_POLL_H */
#endif /* !_COMPAT_POLL_H_ */