mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-16 10:51:54 +08:00
7d673f921c
1. Move struct stat to libc_stat.h; 2. Defined a new FD_SET macros in libc_fdset.h.
18 lines
256 B
C
18 lines
256 B
C
#ifndef DFS_SELECT_H__
|
|
#define DFS_SELECT_H__
|
|
|
|
#include <libc/libc_fdset.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval *timeout);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|