22 lines
309 B
C
22 lines
309 B
C
/* $NetBSD: Lint_Ovfork.c,v 1.3 2000/06/14 06:49:10 cgd 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);
|
|
}
|