Commit cd15945a34ba8e009bcbf435668e695e18191c82

SSE4 2019-02-22T05:13:18

- remove unused variables Signed-off-by: SSE4 <tomskside@gmail.com>

1
2
3
4
5
6
7
8
9
10
11
12
13
14
diff --git a/sys/wait.h b/sys/wait.h
index 1ff42a2..9525280 100644
--- a/sys/wait.h
+++ b/sys/wait.h
@@ -221,9 +221,6 @@ static int __waitpid_internal(pid_t pid, int * status, int options, siginfo_t * 
     int (*filter)(PROCESSENTRY32*, DWORD);
     PROCESSENTRY32 pe;
     DWORD wait_status = 0, exit_code = 0;
-    int untraced = WUNTRACED == (WUNTRACED & options);
-    int nowait = __WNOWAIT == (__WNOWAIT & options);
-    int continued = __WCONTINUED == (__WCONTINUED & options);
     int nohang = WNOHANG == (WNOHANG & options);
     options &= ~(WUNTRACED | __WNOWAIT | __WCONTINUED | WNOHANG);
     if (options)