summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2001-07-04 23:52:42 +0000
committerMarc Espie <espie@cvs.openbsd.org>2001-07-04 23:52:42 +0000
commit3cbd1a8fccf944126f636c4c1926fb4c7935e74a (patch)
tree29efa98b1dac2dcc9b29e05001c44c02a8e2ab6b /sys/arch
parent490cd342e381f9ded51b969a01fa4e8fc1f97806 (diff)
need sys/systm.h for strcmp prototype (gcc 3.0 fixes built-in status,
in that they're only activated when the corresponding include has been seen) Okay millert@
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/i386/i386/mtrr.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/i386/i386/mtrr.c b/sys/arch/i386/i386/mtrr.c
index 45111eace08..99479bd73b9 100644
--- a/sys/arch/i386/i386/mtrr.c
+++ b/sys/arch/i386/i386/mtrr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mtrr.c,v 1.4 2000/03/22 00:02:12 deraadt Exp $ */
+/* $OpenBSD: mtrr.c,v 1.5 2001/07/04 23:52:41 espie Exp $ */
/*-
* Copyright (c) 1999 Michael Smith <msmith@freebsd.org>
* Copyright (c) 1999 Brian Fundakowski Feldman
@@ -29,6 +29,7 @@
#include <sys/param.h>
#include <sys/memrange.h>
+#include <sys/systm.h>
#include <machine/specialreg.h>