Lint_Ovfork.c revision 1.2 1 /* $NetBSD: Lint_Ovfork.c,v 1.2 2024/01/20 14:52:46 christos 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 pid_t
12 vfork(void)
13 {
14 return (0);
15 }
16