opuntiaOS - an operating system targeting x86 and ARMv7
at master 333 B view raw
1#ifndef _LIBC_SYS_SELECT_H 2#define _LIBC_SYS_SELECT_H 3 4#include <bits/sys/select.h> 5#include <bits/time.h> 6#include <stddef.h> 7#include <sys/cdefs.h> 8#include <sys/types.h> 9 10__BEGIN_DECLS 11 12int select(int nfds, fd_set_t* readfds, fd_set_t* writefds, fd_set_t* exceptfds, timeval_t* timeout); 13 14__END_DECLS 15 16#endif // _LIBC_SYS_SELECT_H