blob: 4f63684f86a217e2da12fd1bc3fa73b985f5339a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef SELECT_H
#define SELECT_H
#include <sys/time.h>
#include <sys/types.h>
#ifdef HAS_SELECT_H
#include <sys/select.h>
#endif
extern int select(int, fd_set *, fd_set *, fd_set *, struct timeval *);
#endif
|