summaryrefslogtreecommitdiff
path: root/sys/dev/ic/revar.h
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>2006-09-19 07:23:03 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>2006-09-19 07:23:03 +0000
commit8512b6119acc815749cdb7d79b007be651b31eee (patch)
tree80f02481f5212e04d00c6518bb1a746a8eec0a57 /sys/dev/ic/revar.h
parent2bcd7d59789e29c0979e4586e27c91231e0d98b0 (diff)
no externs on protots ad no casts from void *
Diffstat (limited to 'sys/dev/ic/revar.h')
-rw-r--r--sys/dev/ic/revar.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/ic/revar.h b/sys/dev/ic/revar.h
index 8593990cb66..0db8427bd50 100644
--- a/sys/dev/ic/revar.h
+++ b/sys/dev/ic/revar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: revar.h,v 1.3 2006/09/18 21:33:32 dim Exp $ */
+/* $OpenBSD: revar.h,v 1.4 2006/09/19 07:23:02 mickey Exp $ */
/*
* Copyright (c) 2005 Peter Valchev <pvalchev@openbsd.org>
@@ -16,7 +16,7 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-extern int re_intr(void *);
-extern int re_attach(struct rl_softc *);
-extern int re_init(struct ifnet *);
-extern void re_stop(struct ifnet *, int);
+int re_intr(void *);
+int re_attach(struct rl_softc *);
+int re_init(struct ifnet *);
+void re_stop(struct ifnet *, int);