summaryrefslogtreecommitdiffstats
path: root/newlib/libc/syscalls/syswait.c
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);
}