Cygwin: sys/wait.h: Add _wait prototype to avoid compiler warning

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
Corinna Vinschen 2019-09-03 12:45:55 +02:00
parent 1082cd8ea2
commit 7630c77026
1 changed files with 4 additions and 0 deletions

View File

@ -22,6 +22,10 @@ pid_t waitpid (pid_t __pid, int *__status, int __options);
pid_t wait3 (int *__status, int __options, struct rusage *__rusage);
pid_t wait4 (pid_t __pid, int *__status, int __options, struct rusage *__rusage);
#ifdef _COMPILING_NEWLIB
pid_t _wait (int *);
#endif
#ifdef __cplusplus
}
#endif