aboutsummaryrefslogtreecommitdiffstats
path: root/extras/mini-os/include/posix/sys/select.h
blob: 5132c512245cca0b697cd8c71380010cf6648544 (plain)
1
2
3
4
5
6
7
#ifndef _POSIX_SELECT_H
#define _POSIX_SELECT_H

#include <sys/time.h>
int select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval *timeout);

#endif /* _POSIX_SELECT_H */