From: Roland McGrath Date: Mon, 29 Jun 1992 23:00:00 +0000 (+0000) Subject: Formerly sysdeps/unix/bsd/sun/sunos4/__wait4.c.~2~ X-Git-Tag: upstream/2.30~10627^2~4346 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6d1b5d43aa6ab99623fde293622046bd56a1b141;p=external%2Fglibc.git Formerly sysdeps/unix/bsd/sun/sunos4/__wait4.c.~2~ --- diff --git a/sysdeps/unix/bsd/sun/sunos4/wait4.c b/sysdeps/unix/bsd/sun/sunos4/wait4.c index 1ee7bea..561457e 100644 --- a/sysdeps/unix/bsd/sun/sunos4/wait4.c +++ b/sysdeps/unix/bsd/sun/sunos4/wait4.c @@ -25,6 +25,9 @@ Cambridge, MA 02139, USA. */ #include #include +extern pid_t EXFUN(__wait4_syscall, + (pid_t pid, union wait *stat_loc, int options, PTR usage)); + pid_t DEFUN(__wait4, (pid, stat_loc, options, usage), pid_t pid AND union wait *stat_loc AND int options AND PTR usage) @@ -40,5 +43,5 @@ DEFUN(__wait4, (pid, stat_loc, options, usage), break; } - return __wait4_syscall (pid, stat_loc, option, usage); + return __wait4_syscall (pid, stat_loc, options, usage); }