1 /* 2 * Copyright (c) 2006-2018, RT-Thread Development Team 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 * 6 * Change Logs: 7 * Date Author Notes 8 */ 9 10 #ifndef DFS_SELECT_H__ 11 #define DFS_SELECT_H__ 12 13 #include <libc/libc_fdset.h> 14 15 #ifdef __cplusplus 16 extern "C" { 17 #endif 18 19 int select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval *timeout); 20 21 #ifdef __cplusplus 22 } 23 #endif 24 25 #endif 26 27