Browse Source

wifi: OS split

master
Quentin Rameau 8 years ago
committed by Aaron Marcher
parent
commit
97ff66522c
  1. 2
      Makefile
  2. 4
      components/Linux/wifi.c
  3. 0
      components/OpenBSD/wifi.c

2
Makefile

@ -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

4
components/wifi.c → components/Linux/wifi.c

@ -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

0
components/OpenBSD/wifi.c

Loading…
Cancel
Save