diff options
Diffstat (limited to 'os/windows/posix/include/sys/wait.h')
-rw-r--r-- | os/windows/posix/include/sys/wait.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/os/windows/posix/include/sys/wait.h b/os/windows/posix/include/sys/wait.h index 954bd2bf..9e68d541 100644 --- a/os/windows/posix/include/sys/wait.h +++ b/os/windows/posix/include/sys/wait.h @@ -1,11 +1,11 @@ #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
+#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);
|