1 /* $NetBSD: Lint_Ovfork.c,v 1.1 2006/03/11 21:07:18 christos Exp $ */
2 
3 /*
4  * This file placed in the public domain.
5  * Chris Demetriou, November 5, 1997.
6  */
7 
8 #if 0
9 #include <unistd.h>
10 #else
11 #include <sys/cdefs.h>
12 #include <sys/types.h>
13 pid_t vfork __P((void));
14 #endif
15 
16 /*ARGSUSED*/
17 pid_t
vfork()18 vfork()
19 {
20 	return (0);
21 }
22