Xinqi Bao's Git
projects
/
slstatus.git
/ diff
summary
|
log
|
commit
|
diff
|
tree
raw
|
patch
|
inline
| side by side (parent:
1fc5cf0
)
wifi: Move out common headers
author
Aaron Marcher <
[email protected]
>
Wed, 16 May 2018 20:57:13 +0000
(22:57 +0200)
committer
Aaron Marcher <
[email protected]
>
Wed, 16 May 2018 20:57:13 +0000
(22:57 +0200)
components/wifi.c
diff
|
blob
|
history
diff --git
a/components/wifi.c
b/components/wifi.c
index
edbcc01
..
78acb3f
100644
(file)
--- a/
components/wifi.c
+++ b/
components/wifi.c
@@
-1,16
+1,17
@@
/* See LICENSE file for copyright and license details. */
/* See LICENSE file for copyright and license details. */
+#include <errno.h>
+#include <ifaddrs.h>
+#include <stdio.h>
+#include <string.h>
+#include <sys/socket.h>
+#include <sys/ioctl.h>
+#include <unistd.h>
+
+#include "../util.h"
+
#if defined(__linux__)
#if defined(__linux__)
- #include <errno.h>
- #include <ifaddrs.h>
#include <limits.h>
#include <linux/wireless.h>
#include <limits.h>
#include <linux/wireless.h>
- #include <sys/socket.h>
- #include <stdio.h>
- #include <string.h>
- #include <sys/ioctl.h>
- #include <unistd.h>
-
- #include "../util.h"
const char *
wifi_perc(const char *iface)
const char *
wifi_perc(const char *iface)
@@
-93,21
+94,12
@@
return id;
}
#elif defined(__OpenBSD__)
return id;
}
#elif defined(__OpenBSD__)
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <errno.h>
- #include <ifaddrs.h>
- #include <unistd.h>
- #include <sys/ioctl.h>
- #include <sys/types.h>
- #include <sys/socket.h>
#include <net/if.h>
#include <net/if_media.h>
#include <net80211/ieee80211.h>
#include <net80211/ieee80211_ioctl.h>
#include <net/if.h>
#include <net/if_media.h>
#include <net80211/ieee80211.h>
#include <net80211/ieee80211_ioctl.h>
-
- #include
"../util.h"
+ #include <stdlib.h>
+ #include
<sys/types.h>
static int
load_ieee80211_nodereq(const char *iface, struct ieee80211_nodereq *nr)
static int
load_ieee80211_nodereq(const char *iface, struct ieee80211_nodereq *nr)