summaryrefslogtreecommitdiffstats
path: root/libc-bottom-half/headers/public/sys/select.h
blob: 7570f14b79a4165dc8f4486ca8ae306f74511e18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef __wasilibc_sys_select_h
#define __wasilibc_sys_select_h

#include <__fd_set.h>
#include <__struct_timespec.h>
#include <__struct_timeval.h>

#ifdef __cplusplus
extern "C" {
#endif

int pselect(int, fd_set *, fd_set *, fd_set *, const struct timespec *, const sigset_t *);

#ifdef __cplusplus
}
#endif

#endif