summaryrefslogtreecommitdiff
path: root/lib/libc/sys/Lint_fork.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/sys/Lint_fork.c')
-rw-r--r--lib/libc/sys/Lint_fork.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/libc/sys/Lint_fork.c b/lib/libc/sys/Lint_fork.c
new file mode 100644
index 00000000000..07f960ca7d0
--- /dev/null
+++ b/lib/libc/sys/Lint_fork.c
@@ -0,0 +1,16 @@
+/* $OpenBSD: Lint_fork.c,v 1.1 1998/02/08 22:45:10 tholo Exp $ */
+/* $NetBSD: Lint_fork.c,v 1.1 1997/11/06 00:52:57 cgd Exp $ */
+
+/*
+ * This file placed in the public domain.
+ * Chris Demetriou, November 5, 1997.
+ */
+
+#include <unistd.h>
+
+/*ARGSUSED*/
+pid_t
+fork()
+{
+ return (0);
+}