diff options
author | vapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-03-04 01:10:56 +0000 |
---|---|---|
committer | vapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-03-04 01:10:56 +0000 |
commit | 15482750bfe1284f28e0dc635569ed76580534a3 (patch) | |
tree | 383a365eb2d0bad4b134cb081e553c0028130158 | |
parent | 5133b86bef95e08cbf4b1e0dbb274ef8ad91f029 (diff) | |
download | busybox-w32-15482750bfe1284f28e0dc635569ed76580534a3.tar.gz busybox-w32-15482750bfe1284f28e0dc635569ed76580534a3.tar.bz2 busybox-w32-15482750bfe1284f28e0dc635569ed76580534a3.zip |
newlib fixe from Shaun Jackman
git-svn-id: svn://busybox.net/trunk/busybox@9970 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | libbb/interface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/interface.c b/libbb/interface.c index fe2d0b4b2..db18b9ad9 100644 --- a/libbb/interface.c +++ b/libbb/interface.c | |||
@@ -1374,7 +1374,7 @@ static struct hwtype loop_hwtype = { | |||
1374 | #if HAVE_HWETHER | 1374 | #if HAVE_HWETHER |
1375 | #include <net/if_arp.h> | 1375 | #include <net/if_arp.h> |
1376 | 1376 | ||
1377 | #if __GLIBC__ >=2 && __GLIBC_MINOR >= 1 | 1377 | #if (__GLIBC__ >=2 && __GLIBC_MINOR >= 1) || defined(_NEWLIB_VERSION) |
1378 | #include <net/ethernet.h> | 1378 | #include <net/ethernet.h> |
1379 | #else | 1379 | #else |
1380 | #include <linux/if_ether.h> | 1380 | #include <linux/if_ether.h> |