diff options
| author | Roy Marples <roy@marples.name> | 2009-01-23 23:36:18 +0000 |
|---|---|---|
| committer | Roy Marples <roy@marples.name> | 2009-01-23 23:36:18 +0000 |
| commit | c735a7323a86d426d529573598ccce3859484cbf (patch) | |
| tree | c9fec0dec9f92872f8bedc80110b4171ba81c767 /if-linux.c | |
| parent | 1bd34f2a9e6a9e6ca91a1e5b616e8760540ed517 (diff) | |
| download | dhcpcd-c735a7323a86d426d529573598ccce3859484cbf.tar.xz | |
Fix compile with crappy linux headers.
Diffstat (limited to 'if-linux.c')
| -rw-r--r-- | if-linux.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -34,11 +34,13 @@ #include <sys/param.h> #include <arpa/inet.h> +#include <net/if.h> +#include <netinet/ether.h> +#include <netpacket/packet.h> + #include <linux/netlink.h> #include <linux/rtnetlink.h> #include <linux/wireless.h> -#include <netinet/ether.h> -#include <netpacket/packet.h> # define SIOCGIWNAME 0x8B01 /* FIXME: Some linux kernel verisons DO NOT like this include |
