mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-16 11:31:00 +08:00
9087163804
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
11 lines
132 B
C
11 lines
132 B
C
/* connector for wait */
|
|
|
|
#include <reent.h>
|
|
#include <sys/wait.h>
|
|
|
|
pid_t
|
|
wait (int *status)
|
|
{
|
|
return _wait_r (_REENT, status);
|
|
}
|