diff options
author | 1996-09-05 12:31:14 +0000 | |
---|---|---|
committer | 1996-09-05 12:31:14 +0000 | |
commit | ab223afc87f138ed33a216ae6b1663c0d1477520 (patch) | |
tree | db94fd139e0c84782bc2fd1a95ca8749f30691bb /sys/kern/sys_pipe.c | |
parent | protect getenv, do not oflow, fix unused debug; bitblt and deraadt (diff) | |
download | wireguard-openbsd-ab223afc87f138ed33a216ae6b1663c0d1477520.tar.xz wireguard-openbsd-ab223afc87f138ed33a216ae6b1663c0d1477520.zip |
compile!
Diffstat (limited to 'sys/kern/sys_pipe.c')
-rw-r--r-- | sys/kern/sys_pipe.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/kern/sys_pipe.c b/sys/kern/sys_pipe.c index 8bb8e86207a..f5a6bb7041a 100644 --- a/sys/kern/sys_pipe.c +++ b/sys/kern/sys_pipe.c @@ -16,7 +16,7 @@ * 4. Modifications may be freely made to this file if the above conditions * are met. * - * $Id: sys_pipe.c,v 1.2 1996/09/04 22:23:28 niklas Exp $ + * $Id: sys_pipe.c,v 1.3 1996/09/05 12:31:14 mickey Exp $ */ #ifndef OLD_PIPE @@ -73,7 +73,6 @@ #include <sys/mount.h> #include <sys/syscallargs.h> #endif -#include <sys/pipe.h> #include <vm/vm.h> #include <vm/vm_prot.h> @@ -86,6 +85,8 @@ #include <vm/vm_map.h> #include <vm/vm_page.h> +#include <sys/pipe.h> + /* * Use this define if you want to disable *fancy* VM things. Expect an * approx 30% decrease in transfer rate. This could be useful for |