dfs_select.h 256 B

1234567891011121314151617
  1. #ifndef DFS_SELECT_H__
  2. #define DFS_SELECT_H__
  3. #include <libc/libc_fdset.h>
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. int select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval *timeout);
  8. #ifdef __cplusplus
  9. }
  10. #endif
  11. #endif