4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-19 12:59:21 +08:00

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 committed by Ken Brown
parent c1199c286f
commit 598b631b18

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