aboutsummaryrefslogtreecommitdiff
path: root/system/include/sys/select.h
diff options
context:
space:
mode:
authorMokhtar Naamani <mokhtar.naamani@gmail.com>2012-09-09 13:22:07 +0300
committerMokhtar Naamani <mokhtar.naamani@gmail.com>2012-09-09 13:34:02 +0300
commitbf49ee816f2fe3cb128251dcfc5463886d47cde9 (patch)
tree7f983a183ae4e7395a9487658786d83530904254 /system/include/sys/select.h
parenta7ed12182550b4aa2526f815248cc1951ee10bf6 (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.h3
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