diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-10-31 01:05:14 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-10-31 01:05:14 +0000 |
commit | d3679db18e84caee4da6f15fe00e4c39494dadf2 (patch) | |
tree | d1bafffa65a299d12b6621f4914f134fc8d77628 /sys/dev/tc | |
parent | acb24b57a076484b61159a23b384d07d9e79fd84 (diff) |
-Wall fixes needed by alpha
Diffstat (limited to 'sys/dev/tc')
-rw-r--r-- | sys/dev/tc/tc.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/tc/tc.c b/sys/dev/tc/tc.c index 690067798d1..5474b1c9bed 100644 --- a/sys/dev/tc/tc.c +++ b/sys/dev/tc/tc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tc.c,v 1.6 1996/05/26 00:27:54 deraadt Exp $ */ +/* $OpenBSD: tc.c,v 1.7 1996/10/31 01:05:13 niklas Exp $ */ /* $NetBSD: tc.c,v 1.16 1996/05/17 23:39:19 cgd Exp $ */ /* @@ -36,6 +36,8 @@ #include <dev/tc/tcvar.h> #include <dev/tc/tcdevs.h> +#include <machine/autoconf.h> /* for the proto of badaddr() */ + struct tc_softc { struct device sc_dv; |