1 /*	$OpenBSD: Lint_rfork.c,v 1.1 2004/09/14 22:18:35 deraadt Exp $	*/
2 
3 /*
4  * This file placed in the public domain.
5  * Chris Demetriou, November 5, 1997.
6  */
7 
8 #include <unistd.h>
9 
10 /*ARGSUSED*/
11 int
rfork(int flags)12 rfork(int flags)
13 {
14 	return (0);
15 }
16