1
0
Fork 0

wifi: OS split

This commit is contained in:
Quentin Rameau 2018-04-30 15:14:39 +02:00 committed by Aaron Marcher
parent 19f3c8f545
commit 97ff66522c
3 changed files with 2 additions and 4 deletions

View File

@ -25,7 +25,7 @@ COM =\
components/$(OS)/uptime \ components/$(OS)/uptime \
components/user\ components/user\
components/volume\ components/volume\
components/wifi components/$(OS)/wifi
all: slstatus all: slstatus

View File

@ -1,5 +1,4 @@
/* See LICENSE file for copyright and license details. */ /* See LICENSE file for copyright and license details. */
#if defined(__linux__)
#include <errno.h> #include <errno.h>
#include <ifaddrs.h> #include <ifaddrs.h>
#include <linux/wireless.h> #include <linux/wireless.h>
@ -10,7 +9,7 @@
#include <sys/ioctl.h> #include <sys/ioctl.h>
#include <unistd.h> #include <unistd.h>
#include "../util.h" #include "../../util.h"
const char * const char *
wifi_perc(const char *iface) wifi_perc(const char *iface)
@ -89,4 +88,3 @@ wifi_essid(const char *iface)
else else
return id; return id;
} }
#endif

View File