diff options
-rw-r--r-- | networking/udhcp/clientsocket.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/udhcp/clientsocket.c b/networking/udhcp/clientsocket.c index 0be661d..1142001 100644 --- a/networking/udhcp/clientsocket.c +++ b/networking/udhcp/clientsocket.c @@ -22,11 +22,11 @@ */ #include <features.h> +#include <asm/types.h> #if (defined(__GLIBC__) && __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1) || defined(_NEWLIB_VERSION) #include <netpacket/packet.h> #include <net/ethernet.h> #else -#include <asm/types.h> #include <linux/if_packet.h> #include <linux/if_ether.h> #endif |