Files
oldlinux-website/Book-Lite/linux-0.12/lib/wait.c
2024-02-19 01:11:57 -05:00

17 lines
253 B
C

/*
* linux/lib/wait.c
*
* (C) 1991 Linus Torvalds
*/
#define __LIBRARY__
#include <unistd.h>
#include <sys/wait.h>
_syscall3(pid_t,waitpid,pid_t,pid,int *,wait_stat,int,options)
pid_t wait(int * wait_stat)
{
return waitpid(-1,wait_stat,0);
}