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

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

#endif /* _POSIX_SELECT_H */