aboutsummaryrefslogtreecommitdiff
path: root/sys/ddb
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1999-05-13 06:07:44 +0000
committerBruce Evans <bde@FreeBSD.org>1999-05-13 06:07:44 +0000
commit07f6cad7a0487163300ddde8cacd285069dfad19 (patch)
treec86ce5f6dce05103bf12397ae507a484ee1a90a2 /sys/ddb
parent0dfcd4a9c43bfef552f7bc4460c1e68d2ce04fc9 (diff)
downloadsrc-07f6cad7a0487163300ddde8cacd285069dfad19.tar.gz
src-07f6cad7a0487163300ddde8cacd285069dfad19.zip
Restored used include of <sys/systm.h>. -Wmissing-prototypes doesn't work
for builtin functions.
Notes
Notes: svn path=/head/; revision=47098
Diffstat (limited to 'sys/ddb')
-rw-r--r--sys/ddb/db_examine.c4
-rw-r--r--sys/ddb/db_variables.c3
2 files changed, 5 insertions, 2 deletions
diff --git a/sys/ddb/db_examine.c b/sys/ddb/db_examine.c
index 464197d692d2..8e0e1dbb13a9 100644
--- a/sys/ddb/db_examine.c
+++ b/sys/ddb/db_examine.c
@@ -23,14 +23,16 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id: db_examine.c,v 1.23 1998/07/08 06:27:22 bde Exp $
+ * $Id: db_examine.c,v 1.24 1998/07/08 10:53:47 bde Exp $
*/
/*
* Author: David B. Golub, Carnegie Mellon University
* Date: 7/90
*/
+
#include <sys/param.h>
+#include <sys/systm.h>
#include <ddb/ddb.h>
diff --git a/sys/ddb/db_variables.c b/sys/ddb/db_variables.c
index 7cd6ee46492c..dff4093b6930 100644
--- a/sys/ddb/db_variables.c
+++ b/sys/ddb/db_variables.c
@@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id: db_variables.c,v 1.15 1998/06/07 17:09:38 dfr Exp $
+ * $Id: db_variables.c,v 1.16 1998/07/08 09:11:39 bde Exp $
*/
/*
@@ -32,6 +32,7 @@
*/
#include <sys/param.h>
+#include <sys/systm.h>
#include <ddb/ddb.h>
#include <ddb/db_lex.h>