mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-30 19:53:46 +00:00
12 lines
158 B
C
12 lines
158 B
C
|
/* connector for wait */
|
||
|
|
||
|
#include <reent.h>
|
||
|
#include <sys/wait.h>
|
||
|
|
||
|
pid_t
|
||
|
_DEFUN (wait, (status),
|
||
|
int *status)
|
||
|
{
|
||
|
return _wait_r (_REENT, status);
|
||
|
}
|