diff options
author | Mokhtar Naamani <mokhtar.naamani@gmail.com> | 2012-09-09 13:22:07 +0300 |
---|---|---|
committer | Mokhtar Naamani <mokhtar.naamani@gmail.com> | 2012-09-09 13:34:02 +0300 |
commit | bf49ee816f2fe3cb128251dcfc5463886d47cde9 (patch) | |
tree | 7f983a183ae4e7395a9487658786d83530904254 /system/include/sys/select.h | |
parent | a7ed12182550b4aa2526f815248cc1951ee10bf6 (diff) |
prevent <sys/select.h> from being included multiple times
Diffstat (limited to 'system/include/sys/select.h')
-rw-r--r-- | system/include/sys/select.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/system/include/sys/select.h b/system/include/sys/select.h index 47cef2e5..49bc034b 100644 --- a/system/include/sys/select.h +++ b/system/include/sys/select.h @@ -1,3 +1,6 @@ +#ifndef _SELECT_H +#define _SELECT_H int select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval *timeout); +#endif |