22 lines
314 B
C
22 lines
314 B
C
|
/* $NetBSD: Lint_Ovfork.c,v 1.1 2006/03/11 21:07:18 christos Exp $ */
|
||
|
|
||
|
/*
|
||
|
* This file placed in the public domain.
|
||
|
* Chris Demetriou, November 5, 1997.
|
||
|
*/
|
||
|
|
||
|
#if 0
|
||
|
#include <unistd.h>
|
||
|
#else
|
||
|
#include <sys/cdefs.h>
|
||
|
#include <sys/types.h>
|
||
|
pid_t vfork __P((void));
|
||
|
#endif
|
||
|
|
||
|
/*ARGSUSED*/
|
||
|
pid_t
|
||
|
vfork()
|
||
|
{
|
||
|
return (0);
|
||
|
}
|