chiark / gitweb /
[PATCH] sync with latest version of klibc (0.107)
[elogind.git] / klibc / klibc / select.c
1 #include <unistd.h>
2 #include <sys/syscall.h>
3
4 #ifdef __NR__newselect
5 #undef __NR_select
6 #define __NR_select __NR__newselect
7 #endif
8
9 _syscall5(int,select,int,a0,fd_set *,a1,fd_set *,a2,fd_set *,a3,struct timeval *,a4);