repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix mdoc(7)/man(7) mix up.
[netbsd-mini2440.git]
/
lib
/
libc
/
compat
/
sys
/
Lint_Ovfork.c
blob
a1cf404411cfe8e534b6a55a8a3f3aaef24237d9
1
/* $NetBSD: Lint_Ovfork.c,v 1.3 2000/06/14 06:49:10 cgd 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
18
vfork
()
19
{
20
return
(
0
);
21
}