b6cbf7203b
This patch imports the unmodified current version of NetBSD libc. The NetBSD includes are in /nbsd_include, while the libc code itself is split between lib/nbsd_libc and common/lib/libc.
21 lines
314 B
C
21 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);
|
|
}
|