aboutsummaryrefslogtreecommitdiff
path: root/system/include/sys/select.h
blob: d6957fea6295cfc119219ea08c49f43547c1a879 (plain)
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