diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-09-04 22:33:49 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-09-04 22:33:49 +0000 |
commit | 9797475ec53ec8353adffd6750e663415064290d (patch) | |
tree | e0ef84d29865c009eef0805ff4bd5b8f4a78920c | |
parent | d9e009cb218ddaf089f0d8f5a4e3de60b2ff5514 (diff) |
pipe.h needed vm_page_t defined for me, so I moved it down
-rw-r--r-- | sys/kern/kern_descrip.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/kern_descrip.c b/sys/kern/kern_descrip.c index f6c28c4399c..814d4f60cc1 100644 --- a/sys/kern/kern_descrip.c +++ b/sys/kern/kern_descrip.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kern_descrip.c,v 1.6 1996/08/27 14:46:59 shawn Exp $ */ +/* $OpenBSD: kern_descrip.c,v 1.7 1996/09/04 22:33:48 niklas Exp $ */ /* $NetBSD: kern_descrip.c,v 1.42 1996/03/30 22:24:38 christos Exp $ */ /* @@ -58,13 +58,13 @@ #include <sys/unistd.h> #include <sys/resourcevar.h> #include <sys/conf.h> -#include <sys/pipe.h> - #include <sys/mount.h> #include <sys/syscallargs.h> #include <vm/vm.h> +#include <sys/pipe.h> + /* * Descriptor management. */ |