diff options
author | 2007-06-19 05:30:19 +0000 | |
---|---|---|
committer | 2007-06-19 05:30:19 +0000 | |
commit | 0d55e7fd14d6fcac7381213b599f5404a7d24c10 (patch) | |
tree | e845f970f2b488a2d0fb15f130eee5fc50c6f6ab | |
parent | err(3) was being called but was missing an include, and end: was (diff) | |
download | wireguard-openbsd-0d55e7fd14d6fcac7381213b599f5404a7d24c10.tar.xz wireguard-openbsd-0d55e7fd14d6fcac7381213b599f5404a7d24c10.zip |
net80211_ifstats() is called in main.c but there was no prototype.
OK markus and itojun
-rw-r--r-- | usr.bin/netstat/netstat.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/netstat/netstat.h b/usr.bin/netstat/netstat.h index e46b6192038..6e57b6dc731 100644 --- a/usr.bin/netstat/netstat.h +++ b/usr.bin/netstat/netstat.h @@ -1,4 +1,4 @@ -/* $OpenBSD: netstat.h,v 1.41 2007/06/04 12:20:24 henning Exp $ */ +/* $OpenBSD: netstat.h,v 1.42 2007/06/19 05:30:19 ray Exp $ */ /* $NetBSD: netstat.h,v 1.6 1996/05/07 02:55:05 thorpej Exp $ */ /* @@ -88,6 +88,8 @@ void etherip_stats(u_long, char *); void protopr(u_long, char *); void ipcomp_stats(u_long, char *); +void net80211_ifstats(char *); + void tcp_dump(u_long); void mbpr(u_long, u_long, u_long); |