1 /*	$OpenBSD: Lint_fork.c,v 1.2 2004/09/14 22:18:56 deraadt Exp $	*/
2 /*	$NetBSD: Lint_fork.c,v 1.1 1997/11/06 00:52:57 cgd Exp $	*/
3 
4 /*
5  * This file placed in the public domain.
6  * Chris Demetriou, November 5, 1997.
7  */
8 
9 #include <unistd.h>
10 
11 /*ARGSUSED*/
12 pid_t
fork(void)13 fork(void)
14 {
15 	return (0);
16 }
17