summaryrefslogtreecommitdiff
path: root/os/windows/posix/include/sys/wait.h
blob: 5b8fd3ae17c210831cf87e14b087f4a014e9d5bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef SYS_WAIT_H
#define SYS_WAIT_H

#define WIFSIGNALED(a)	0
#define WIFEXITED(a)	0
#define WTERMSIG(a)		0
#define WEXITSTATUS(a)	0
#define WNOHANG			0

pid_t waitpid(pid_t, int *stat_loc, int options);

#endif /* SYS_WAIT_H */