12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- #ifndef _SYS_POLL_H
- #define _SYS_POLL_H 1
- #include <features.h>
- #include <bits/poll.h>
- typedef unsigned long int nfds_t;
- struct pollfd
- {
- int fd;
- short int events;
- short int revents;
- };
- __BEGIN_DECLS
- extern int poll (struct pollfd *__fds, nfds_t __nfds, int __timeout) __THROW;
- __END_DECLS
- #endif
|