diff options
author | kato <kato@FreeBSD.org> | 2000-04-12 14:08:02 +0000 |
---|---|---|
committer | kato <kato@FreeBSD.org> | 2000-04-12 14:08:02 +0000 |
commit | 79df56f489530b7a4a75869b99bbbf9410b8fd60 (patch) | |
tree | 161db89208a7872b198b5fc30586905bdbbe83ba | |
parent | e486fe2ee633add84a50eb5c4ab37d35b9366b55 (diff) | |
download | FreeBSD-src-79df56f489530b7a4a75869b99bbbf9410b8fd60.zip FreeBSD-src-79df56f489530b7a4a75869b99bbbf9410b8fd60.tar.gz |
Include pc98.h instead of isareg.h.
Submitted by: Akio Morita <amorita@meadow.scphys.kyoto-u.ac.jp>
Reminded by: nyan
-rw-r--r-- | sys/pc98/pc98/pcaudio.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/pc98/pc98/pcaudio.c b/sys/pc98/pc98/pcaudio.c index b2f9452..fdad7b4 100644 --- a/sys/pc98/pc98/pcaudio.c +++ b/sys/pc98/pc98/pcaudio.c @@ -41,7 +41,11 @@ #include <machine/clock.h> #include <machine/pcaudioio.h> +#ifdef PC98 +#include <pc98/pc98/pc98.h> +#else #include <isa/isareg.h> +#endif #include <isa/isavar.h> #include <i386/isa/timerreg.h> |