1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#ifndef _SELECT_H #define _SELECT_H #include <unistd.h> #ifdef __cplusplus extern "C" { #endif int select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval *timeout); #ifdef __cplusplus } #endif #endif