blob: a5c731475f6fae566c574b8e45967bf03ee70db0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef _SELECT_H
#define _SELECT_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
|