diff options
author | bde <bde@FreeBSD.org> | 1995-03-28 07:58:53 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1995-03-28 07:58:53 +0000 |
commit | 4f64fe43e7186660d972f9eae509424f1addaa8a (patch) | |
tree | e153346dd5a88815c9c3e7f6748d7766c40a6b0d /sys/dev/lnc | |
parent | 6ad7636d4a24ed5873a051888c579f5ef47677c4 (diff) | |
download | FreeBSD-src-4f64fe43e7186660d972f9eae509424f1addaa8a.zip FreeBSD-src-4f64fe43e7186660d972f9eae509424f1addaa8a.tar.gz |
Add and move declarations to fix all of the warnings from `gcc -Wimplicit'
(except in netccitt, netiso and netns) that I didn't notice when I fixed
"all" such warnings before.
Diffstat (limited to 'sys/dev/lnc')
-rw-r--r-- | sys/dev/lnc/if_lnc.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sys/dev/lnc/if_lnc.c b/sys/dev/lnc/if_lnc.c index b482f5f..305b7fc 100644 --- a/sys/dev/lnc/if_lnc.c +++ b/sys/dev/lnc/if_lnc.c @@ -128,6 +128,11 @@ struct lnc_softc { } lnc_softc[NLNC]; /* Function prototypes */ +int bicc_probe(struct isa_device *); +int depca_probe(struct isa_device *); +int lance_probe(int); +int ne2100_probe(struct isa_device *); +int pcnet_probe(int); void lnc_init(int); void lnc_start(struct ifnet *); int lnc_ioctl(struct ifnet *, int, caddr_t); |