/* sys/poll.h: Wait for events on multiple file descriptors. */ #ifndef _SYS_POLL_H #define _SYS_POLL_H #include #ifdef __cplusplus extern "C" { #endif /* Wait for events on multiple file descriptors. */ int poll(struct pollfd* fds, nfds_t nfds, int timeout); #ifdef __cplusplus } #endif #endif