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: 0701603429cda44b44c03323157bf4941fc06808 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* connector for wait */

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

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