diff options
Diffstat (limited to 'lib/libc/sys/Lint_pipe.c')
-rw-r--r-- | lib/libc/sys/Lint_pipe.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/libc/sys/Lint_pipe.c b/lib/libc/sys/Lint_pipe.c new file mode 100644 index 00000000000..df07e3e95b3 --- /dev/null +++ b/lib/libc/sys/Lint_pipe.c @@ -0,0 +1,17 @@ +/* $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); +} |