Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/sys/linux/select.c')
-rw-r--r--newlib/libc/sys/linux/select.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/newlib/libc/sys/linux/select.c b/newlib/libc/sys/linux/select.c
deleted file mode 100644
index 838d485a7..000000000
--- a/newlib/libc/sys/linux/select.c
+++ /dev/null
@@ -1,12 +0,0 @@
-/* libc/sys/linux/select.c - The select system calls */
-
-/* Written 2000 by Werner Almesberger */
-
-
-#include <sys/types.h>
-#include <sys/time.h>
-#include <sys/syscall.h>
-
-
-_syscall5(int,select,int,n,fd_set *,readfds,fd_set *,writefds,
- fd_set *,exceptfds,struct timeval *,timeout)