repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove building with NOCRYPTO option
[minix3.git]
/
lib
/
libc
/
compat
/
sys
/
Lint_Ovfork.c
blob
33cd226ac3d3562ab340f9a39d2a7be6b36bb338
1
/* $NetBSD: Lint_Ovfork.c,v 1.1 2006/03/11 21:07:18 christos 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
}