blob: 55bad8e20bb55bc0e6951418fd7389792a9d9620 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include <fd_set.h>
#include <string.h>
#include <sys/cdefs.h>
#include <sys/types.h>
__BEGIN_DECLS
int select(int nfds, fd_set* readfds, fd_set* writefds, fd_set* exceptfds, struct timeval* timeout);
__END_DECLS
|