blob: f009d6e4881ca5d41530ec9a3597bef5212f9aba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef SYS_POLL_H
#define SYS_POLL_H
typedef int nfds_t;
struct pollfd
{
int fd;
short events;
short revents;
};
int poll(struct pollfd fds[], nfds_t nfds, int timeout);
#endif /* SYS_POLL_H */
|