From 3ca562853b0699e99081db9aa90c0f1b9cbd1cbb Mon Sep 17 00:00:00 2001 From: sam Date: Sun, 1 Mar 2009 08:01:38 +0000 Subject: use ansi prototypes Submitted by: Pawel Worach --- usr.sbin/wpa/wpa_supplicant/Packet32.c | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) (limited to 'usr.sbin/wpa/wpa_supplicant') diff --git a/usr.sbin/wpa/wpa_supplicant/Packet32.c b/usr.sbin/wpa/wpa_supplicant/Packet32.c index f8a90b3..07da359 100644 --- a/usr.sbin/wpa/wpa_supplicant/Packet32.c +++ b/usr.sbin/wpa/wpa_supplicant/Packet32.c @@ -109,8 +109,7 @@ PacketGetVersion(void) } void * -PacketOpenAdapter(iface) - CHAR *iface; +PacketOpenAdapter(CHAR *iface) { struct adapter *a; int s; @@ -164,10 +163,7 @@ PacketOpenAdapter(iface) } int -PacketRequest(iface, set, oid) - void *iface; - BOOLEAN set; - PACKET_OID_DATA *oid; +PacketRequest(void *iface, BOOLEAN set, PACKET_OID_DATA *oid) { struct adapter *a; uint32_t retval; @@ -239,9 +235,7 @@ PacketRequest(iface, set, oid) } int -PacketGetAdapterNames(namelist, len) - CHAR *namelist; - ULONG *len; +PacketGetAdapterNames(CHAR *namelist, ULONG *len) { int mib[6]; size_t needed; @@ -341,8 +335,7 @@ PacketGetAdapterNames(namelist, len) } void -PacketCloseAdapter(iface) - void *iface; +PacketCloseAdapter(void *iface) { struct adapter *a; struct ifreq ifr; -- cgit v1.1