Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(367)

Side by Side Diff: native_client_sdk/src/libraries/third_party/newlib-extras/sys/select.h

Issue 539163004: [NaCl SDK]: use standard __BEGIN_DECLS macros in sys/select.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #ifndef _SYS_SELECT_H 1 #ifndef _SYS_SELECT_H
2 #define _SYS_SELECT_H 1 2 #define _SYS_SELECT_H 1
3 3
4 #include <sys/cdefs.h> 4 #include <sys/cdefs.h>
5 #include <sys/time.h> 5 #include <sys/time.h>
6 #include <sys/types.h> 6 #include <sys/types.h>
7 #include <time.h> 7 #include <time.h>
8 8
9 #include "sdk_util/macros.h" 9 __BEGIN_DECLS
10
11 EXTERN_C_BEGIN
12 10
13 int select (int __nfds, fd_set *__restrict __readfds, 11 int select (int __nfds, fd_set *__restrict __readfds,
14 fd_set *__restrict __writefds, 12 fd_set *__restrict __writefds,
15 fd_set *__restrict __exceptfds, 13 fd_set *__restrict __exceptfds,
16 struct timeval *__restrict __timeout) __THROW; 14 struct timeval *__restrict __timeout) __THROW;
17 15
18 EXTERN_C_END 16 __END_DECLS
19 17
20 #endif /* sys/select.h */ 18 #endif /* sys/select.h */
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698