diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-05-10 13:02:37 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-05-10 13:02:37 +0000 |
commit | 5631976dfceacb290bbe4df2c8130fc2272a4d1a (patch) | |
tree | 4815fe5d0922fa396257ca1c0c946cb825d2c59c /usr.bin/netstat/netstat.h | |
parent | 1dc0b97d1d3cbd064eff34d05f6812b08b82fe2f (diff) |
if_name/if_unit -> if_xname/if_softc
network list is a TAILQ
Diffstat (limited to 'usr.bin/netstat/netstat.h')
-rw-r--r-- | usr.bin/netstat/netstat.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/netstat/netstat.h b/usr.bin/netstat/netstat.h index aaaae7b225a..085203893da 100644 --- a/usr.bin/netstat/netstat.h +++ b/usr.bin/netstat/netstat.h @@ -1,4 +1,4 @@ -/* $NetBSD: netstat.h,v 1.5 1995/10/03 21:42:45 thorpej Exp $ */ +/* $NetBSD: netstat.h,v 1.6 1996/05/07 02:55:05 thorpej Exp $ */ /* * Copyright (c) 1992, 1993 @@ -52,11 +52,10 @@ int tflag; /* show i/f watchdog timers */ int interval; /* repeat interval for i/f stats */ char *interface; /* desired i/f for stats, or NULL for all i/fs */ -int unit; /* unit number for above */ int af; /* address family */ -char *prog; /* program name */ +extern char *__progname; /* program name, from crt0.o */ int kread __P((u_long addr, char *buf, int size)); |