summaryrefslogtreecommitdiff
path: root/lib/libstand/dev_net.c
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>1999-01-21 00:55:32 +0000
committercvs2svn <cvs2svn@FreeBSD.org>1999-01-21 00:55:32 +0000
commit76b5366091f76c9bc73570149ef5055648fc2c39 (patch)
tree590d020e0f2a5bea6e09d66d951a674443b21d67 /lib/libstand/dev_net.c
parent4b4d01da6f07f7754ff6a6e4f5223e9f0984d1a6 (diff)
Notes
Diffstat (limited to 'lib/libstand/dev_net.c')
-rw-r--r--lib/libstand/dev_net.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/libstand/dev_net.c b/lib/libstand/dev_net.c
index cfa9fbff8a94..8d09e4f7c084 100644
--- a/lib/libstand/dev_net.c
+++ b/lib/libstand/dev_net.c
@@ -73,8 +73,6 @@ static int netdev_opens;
static int net_getparams(int sock);
-static void net_print(int verbose);
-
struct devsw netdev = {
"net",
DEVT_NET,
@@ -83,20 +81,9 @@ struct devsw netdev = {
net_open,
net_close,
noioctl
- net_print,
};
/*
- * Print stuff about our net 'device'.
- */
-static void
-net_print(int verbose)
-{
- pager_output(" net: network interface");
- /* XXX much more verbose stuff here */
-}
-
-/*
* Called by devopen after it sets f->f_dev to our devsw entry.
* This opens the low-level device and sets f->f_devdata.
* This is declared with variable arguments...