diff options
author | Jason Wright <jason@cvs.openbsd.org> | 1999-12-03 16:02:00 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 1999-12-03 16:02:00 +0000 |
commit | 2a3c66efcc31cadbd8033d16a3b656b796841b04 (patch) | |
tree | ccf715e748c767afaa1862c20692f0dcf3f7cb4a /sys/dev | |
parent | 32778beea1336a2aaf06938ffc365be34138cc10 (diff) |
make this compile again; millert.
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/tc/if_fta.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/dev/tc/if_fta.c b/sys/dev/tc/if_fta.c index 5a4981ed652..b5bbc290e55 100644 --- a/sys/dev/tc/if_fta.c +++ b/sys/dev/tc/if_fta.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_fta.c,v 1.5 1999/11/30 04:00:44 jason Exp $ */ +/* $OpenBSD: if_fta.c,v 1.6 1999/12/03 16:01:59 jason Exp $ */ /* $NetBSD: if_fta.c,v 1.7 1996/10/22 21:37:26 cgd Exp $ */ /*- @@ -64,6 +64,9 @@ #include <dev/ic/pdqvar.h> #include <dev/ic/pdqreg.h> +int pdq_tc_match __P((struct device *, void *, void *)); +void pdq_tc_attach __P((struct device *, struct device *, void *)); + int pdq_tc_match(parent, match, aux) struct device *parent; |