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