lh | 9ed821d | 2023-04-07 01:36:19 -0700 | [diff] [blame] | 1 | #ifndef _SYS_SELECT_H |
| 2 | #include <misc/sys/select.h> |
| 3 | |
| 4 | #ifndef _ISOMAC |
| 5 | /* Now define the internal interfaces. */ |
| 6 | extern int __pselect (int __nfds, fd_set *__readfds, |
| 7 | fd_set *__writefds, fd_set *__exceptfds, |
| 8 | const struct timespec *__timeout, |
| 9 | const __sigset_t *__sigmask); |
| 10 | |
| 11 | extern int __select (int __nfds, fd_set *__restrict __readfds, |
| 12 | fd_set *__restrict __writefds, |
| 13 | fd_set *__restrict __exceptfds, |
| 14 | struct timeval *__restrict __timeout); |
| 15 | libc_hidden_proto (__select) |
| 16 | |
| 17 | #endif |
| 18 | #endif |