Change the vfork() declaration to match the prototype, and thus fix the build.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@19518 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Travis Geiselbrecht 2006-12-15 08:42:34 +00:00
parent 028faa1833
commit 83d5eb4190

View File

@ -3,8 +3,8 @@
#include <unistd.h>
int
vfork ()
pid_t
vfork (void)
{
return (fork ());
}