Welcome to mirror list, hosted at ThFree Co, Russian Federation.

syswait.c « syscalls « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 25b5c4788d1b50841b580058454ba8e2f9f25b68 (plain)
1
2
3
4
5
6
7
8
9
10
/* connector for wait */

#include <reent.h>
#include <sys/wait.h>

pid_t
wait (int *status)
{
  return _wait_r (_REENT, status);
}