summaryrefslogtreecommitdiff
path: root/sys/lib/libsa/dev_net.h
diff options
context:
space:
mode:
authortsutsui <tsutsui@NetBSD.org>2007-10-27 12:21:17 +0000
committertsutsui <tsutsui@NetBSD.org>2007-10-27 12:21:17 +0000
commitfe9146d494aa594e650446d7406c4ee11e8d41fa (patch)
tree4f58ec5c190fdc161dc642c08d129cf7d8782894 /sys/lib/libsa/dev_net.h
parent03f68714d2e5fbba9ac4d9ae6cfcc2b40bed9879 (diff)
Add an extern decl of try_bootp variable here since MD sources could set it.
Diffstat (limited to 'sys/lib/libsa/dev_net.h')
-rw-r--r--sys/lib/libsa/dev_net.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/lib/libsa/dev_net.h b/sys/lib/libsa/dev_net.h
index a49aabf4e5b..f8319f2ebd7 100644
--- a/sys/lib/libsa/dev_net.h
+++ b/sys/lib/libsa/dev_net.h
@@ -1,6 +1,10 @@
-/* $NetBSD: dev_net.h,v 1.4 1999/03/26 15:41:38 dbj Exp $ */
+/* $NetBSD: dev_net.h,v 1.5 2007/10/27 12:21:17 tsutsui Exp $ */
int net_open __P((struct open_file *, ...));
int net_close __P((struct open_file *));
int net_ioctl __P((struct open_file *, u_long, void *));
int net_strategy __P((void *, int , daddr_t , size_t, void *, size_t *));
+
+#ifdef SUPPORT_BOOTP
+extern int try_bootp;
+#endif