summaryrefslogtreecommitdiff
path: root/src/select/select.c
blob: 696cb2880efcf1b2c0607f16cb424b203d6d5055 (plain) (blame)
1
2
3
4
5
6
7
8
#include <sys/select.h>
#include "syscall.h"
#include "libc.h"

int select(int n, fd_set *rfds, fd_set *wfds, fd_set *efds, struct timeval *tv)
{
	return syscall_cp(SYS_select, n, rfds, wfds, efds, tv);
}