mirror of
https://github.com/wassname/ray.git
synced 2026-08-03 13:10:57 +08:00
8 lines
143 B
C
8 lines
143 B
C
#ifndef POLL_H
|
|
#define POLL_H
|
|
|
|
typedef unsigned long int nfds_t;
|
|
int poll(struct pollfd fds[], nfds_t nfds, int timeout);
|
|
|
|
#endif /* POLL_H */
|