summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorniklas <niklas@openbsd.org>1996-09-04 22:33:48 +0000
committerniklas <niklas@openbsd.org>1996-09-04 22:33:48 +0000
commit67b362224bb73980b1797b602ccb9bb7e56b6831 (patch)
tree82345b3fc368e49a459ec894d6012f4f7343b0b9
parentDo not do the if(a = b) game even if correct, it is confusing (diff)
downloadwireguard-openbsd-67b362224bb73980b1797b602ccb9bb7e56b6831.tar.xz
wireguard-openbsd-67b362224bb73980b1797b602ccb9bb7e56b6831.zip
pipe.h needed vm_page_t defined for me, so I moved it down
-rw-r--r--sys/kern/kern_descrip.c6
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.
*/