summaryrefslogtreecommitdiff
path: root/klibc/klibc/select.c
blob: 2404bb1e645688133ba489799f855aadd7411adf (plain)
1
2
3
4
5
6
7
8
9
#include <unistd.h>
#include <sys/syscall.h>

#ifdef __NR__newselect
#undef __NR_select
#define __NR_select __NR__newselect
#endif

_syscall5(int,select,int,a0,fd_set *,a1,fd_set *,a2,fd_set *,a3,struct timeval *,a4);