diff options
author | Denys Vlasenko | 2009-07-10 18:37:06 +0200 |
---|---|---|
committer | Denys Vlasenko | 2009-07-10 18:37:06 +0200 |
commit | 860d2bbdda67acfec39cd28e38881633ec4e66d6 (patch) | |
tree | 284fe111111ba2e2f19deed779e34846e58e04ca /networking/udhcp/clientpacket.c | |
parent | 874201fee5a57acf25efe1b0b9c7e58ef6ef98a5 (diff) | |
download | busybox-860d2bbdda67acfec39cd28e38881633ec4e66d6.zip busybox-860d2bbdda67acfec39cd28e38881633ec4e66d6.tar.gz |
fix fallout from BSD patches
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/udhcp/clientpacket.c')
-rw-r--r-- | networking/udhcp/clientpacket.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/networking/udhcp/clientpacket.c b/networking/udhcp/clientpacket.c index 0a3e644..8ccdfcc 100644 --- a/networking/udhcp/clientpacket.c +++ b/networking/udhcp/clientpacket.c @@ -7,6 +7,10 @@ * * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. */ +#include "common.h" +#include "dhcpd.h" +#include "dhcpc.h" +#include "options.h" //#include <features.h> #if (defined(__GLIBC__) && __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1) || defined _NEWLIB_VERSION @@ -18,11 +22,6 @@ #include <linux/if_ether.h> #endif -#include "common.h" -#include "dhcpd.h" -#include "dhcpc.h" -#include "options.h" - /* Create a random xid */ uint32_t FAST_FUNC random_xid(void) |