summaryrefslogtreecommitdiff
path: root/sys/ddb
diff options
context:
space:
mode:
authorPhilip Guenthe <guenther@cvs.openbsd.org>2010-05-26 15:33:52 +0000
committerPhilip Guenthe <guenther@cvs.openbsd.org>2010-05-26 15:33:52 +0000
commitd821b774f6c04139b001bdd61bbbe71e0bda2052 (patch)
tree2b10b4cef54ace6a07b8e65f6bef06c29a52ff9e /sys/ddb
parentb7aa1c0314ac47a395cf9efc5ac59cb43ec8afc3 (diff)
Fallout from the proc.h include cleanup: proc.h must be included before
user.h ok deraadt@
Diffstat (limited to 'sys/ddb')
-rw-r--r--sys/ddb/db_structinfo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ddb/db_structinfo.c b/sys/ddb/db_structinfo.c
index 6fd189c31fb..6b9d88a965c 100644
--- a/sys/ddb/db_structinfo.c
+++ b/sys/ddb/db_structinfo.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: db_structinfo.c,v 1.1 2009/08/09 23:04:49 miod Exp $ */
+/* $OpenBSD: db_structinfo.c,v 1.2 2010/05/26 15:33:51 guenther Exp $ */
/* public domain */
/*
* This file is intended to be compiled with debug information,
@@ -11,8 +11,8 @@
#include <sys/cdefs.h>
#include <sys/device.h>
-#include <sys/user.h>
#include <sys/proc.h>
+#include <sys/user.h>
#include <sys/acct.h>
#include <sys/buf.h>
#include <sys/conf.h>