summaryrefslogtreecommitdiff
path: root/include/select.h
blob: b2fe69e63a4a06321f28aed7a28be2102cd8f14e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef SELECT_H
#define SELECT_H

#include <sys/types.h>
#include <sys/time.h>

#ifdef HAS_SELECT_H
#include <sys/select.h>
#endif

extern int select(int,fd_set *,fd_set *,fd_set *,struct timeval *);

#endif