From 83d5eb4190a409a65fda0fc7bd80a08f03c4264e Mon Sep 17 00:00:00 2001 From: Travis Geiselbrecht Date: Fri, 15 Dec 2006 08:42:34 +0000 Subject: [PATCH] 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 --- src/libs/stdc++/vfork.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libs/stdc++/vfork.c b/src/libs/stdc++/vfork.c index b75e314036..a7bb77674f 100644 --- a/src/libs/stdc++/vfork.c +++ b/src/libs/stdc++/vfork.c @@ -3,8 +3,8 @@ #include -int -vfork () +pid_t +vfork (void) { return (fork ()); }