blob: 5c722e9df64ae6c74759ad810fea7834bbb4876a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#ifndef _SYS_SELECT_H
#include <misc/sys/select.h>
/* Now define the internal interfaces. */
extern int __pselect __P ((int __nfds, __fd_set *__readfds,
__fd_set *__writefds, __fd_set *__exceptfds,
const struct timespec *__timeout,
const __sigset_t *__sigmask));
#endif
|