diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-09-05 12:31:15 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-09-05 12:31:15 +0000 |
commit | 2b764e6298f12f3def9645b73946d1761f50bf52 (patch) | |
tree | 51d7f251163e2427de63ea542fb597ee334a8d61 | |
parent | 17dc183f9b79036bed3ea82631ec348b2ffbc79c (diff) |
compile!
-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 |