summaryrefslogtreecommitdiff
path: root/lib/libc/sys/Lint_pipe.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1999-06-07 07:17:57 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1999-06-07 07:17:57 +0000
commit4e96377228ca04c54bdc4aec8116d85f74e15834 (patch)
tree2bc8d849fde3727add9392d8f2a95f71c02fed16 /lib/libc/sys/Lint_pipe.c
parenta7879e1dacba108b617cc911081400e53cca0155 (diff)
replacement pipe() system call; copies data into place inside kernel, so
that EFAULT return value is possible
Diffstat (limited to 'lib/libc/sys/Lint_pipe.c')
-rw-r--r--lib/libc/sys/Lint_pipe.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/lib/libc/sys/Lint_pipe.c b/lib/libc/sys/Lint_pipe.c
deleted file mode 100644
index df07e3e95b3..00000000000
--- a/lib/libc/sys/Lint_pipe.c
+++ /dev/null
@@ -1,17 +0,0 @@
-/* $OpenBSD: Lint_pipe.c,v 1.1 1998/02/08 22:45:10 tholo Exp $ */
-/* $NetBSD: Lint_pipe.c,v 1.1 1997/11/06 00:52:59 cgd Exp $ */
-
-/*
- * This file placed in the public domain.
- * Chris Demetriou, November 5, 1997.
- */
-
-#include <unistd.h>
-
-/*ARGSUSED*/
-int
-pipe(filedes)
- int filedes[2];
-{
- return (0);
-}