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