mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-22 19:00:07 +00:00
8f589a7cfe
* include/sys/select.h: ... to here. * socket/sys/socket.h: Move prototypes of __send and __connect from here.... * include/sys/socket.h: ... to here.
15 lines
483 B
C
15 lines
483 B
C
#ifndef _SYS_SELECT_H
|
|
#include <misc/sys/select.h>
|
|
|
|
/* Now define the internal interfaces. */
|
|
extern int __pselect (int __nfds, __fd_set *__readfds,
|
|
__fd_set *__writefds, __fd_set *__exceptfds,
|
|
const struct timespec *__timeout,
|
|
const __sigset_t *__sigmask);
|
|
|
|
extern int __select (int __nfds, __fd_set *__restrict __readfds,
|
|
__fd_set *__restrict __writefds,
|
|
__fd_set *__restrict __exceptfds,
|
|
struct timeval *__restrict __timeout);
|
|
#endif
|