diff options
author | eivind <eivind@FreeBSD.org> | 1999-09-26 18:19:49 +0000 |
---|---|---|
committer | eivind <eivind@FreeBSD.org> | 1999-09-26 18:19:49 +0000 |
commit | e395a206361e3cc87cc94d748590da8b675e54b7 (patch) | |
tree | b796f6f70f7dac0cd3ead943557bfb8e0561fb8c /sys/dev/advansys | |
parent | 2090db494b5e96bf8dcf30ea751bf985edc28743 (diff) | |
download | FreeBSD-src-e395a206361e3cc87cc94d748590da8b675e54b7.zip FreeBSD-src-e395a206361e3cc87cc94d748590da8b675e54b7.tar.gz |
Move the declaration of panic() from sys/systm.h to sys/param.h.
Rationale: Wider access, so we can add assertions to header files.
panicstr is still in sys/systm.h
Suggested by: phk
Discussed with: peter
Diffstat (limited to 'sys/dev/advansys')
-rw-r--r-- | sys/dev/advansys/adwlib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/advansys/adwlib.c b/sys/dev/advansys/adwlib.c index 289c3c6..1195f50 100644 --- a/sys/dev/advansys/adwlib.c +++ b/sys/dev/advansys/adwlib.c @@ -44,7 +44,7 @@ * modification. */ -#include <sys/types.h> +#include <sys/param.h> #include <sys/systm.h> #include <machine/bus_pio.h> |