[NaCl SDK]: use standard __BEGIN_DECLS macros in sys/select.h
[chromium-blink-merge.git] / native_client_sdk / src / libraries / third_party / newlib-extras / sys / select.h
blob9aa755db4acd2964244f22e66153880f7d9d99a4
1 #ifndef _SYS_SELECT_H
2 #define _SYS_SELECT_H 1
4 #include <sys/cdefs.h>
5 #include <sys/time.h>
6 #include <sys/types.h>
7 #include <time.h>
9 __BEGIN_DECLS
11 int select (int __nfds, fd_set *__restrict __readfds,
12 fd_set *__restrict __writefds,
13 fd_set *__restrict __exceptfds,
14 struct timeval *__restrict __timeout) __THROW;
16 __END_DECLS
18 #endif /* sys/select.h */