Implement writev on Windows
[fio.git] / os / windows / posix / include / sys / wait.h
CommitLineData
35922a21
BC
1#ifndef SYS_WAIT_H
2#define SYS_WAIT_H
3
4#define WIFSIGNALED(a) 0
5#define WIFEXITED(a) 0
6#define WTERMSIG(a) 0
7#define WEXITSTATUS(a) 0
70a61165 8#define WNOHANG 1
35922a21
BC
9
10pid_t waitpid(pid_t, int *stat_loc, int options);
11
12#endif /* SYS_WAIT_H */