Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / native_client_sdk / src / libraries / third_party / newlib-extras / sys / select.h
1 #ifndef _SYS_SELECT_H
2 #define _SYS_SELECT_H   1
3
4 #include <sys/cdefs.h>
5 #include <sys/time.h>
6 #include <sys/types.h>
7 #include <time.h>
8
9 #include "sdk_util/macros.h"
10
11 EXTERN_C_BEGIN
12
13 int select (int __nfds, fd_set *__restrict __readfds,
14             fd_set *__restrict __writefds,
15             fd_set *__restrict __exceptfds,
16             struct timeval *__restrict __timeout) __THROW;
17
18 EXTERN_C_END
19
20 #endif /* sys/select.h */