blob: f064e2ba4bf1afb4ce99c012e83ada864b6fef30 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef POLL_H
#define 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 /* POLL_H */
|