diff options
author | Eric Andersen | 2003-07-22 08:56:55 +0000 |
---|---|---|
committer | Eric Andersen | 2003-07-22 08:56:55 +0000 |
commit | 85e5e72bc1acd9d58c11bde6e14c8270cd9f169f (patch) | |
tree | 9971c6951256dd0bba5ff2a7db08ed6f65ef218d /libbb/interface.c | |
parent | 0a14c9f924eaf6a64e78959a190d187d646b3c0c (diff) | |
download | busybox-85e5e72bc1acd9d58c11bde6e14c8270cd9f169f.zip busybox-85e5e72bc1acd9d58c11bde6e14c8270cd9f169f.tar.gz |
Remove remaining libc5 support code
Diffstat (limited to 'libbb/interface.c')
-rw-r--r-- | libbb/interface.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/libbb/interface.c b/libbb/interface.c index fb3a42a..46c3ba9 100644 --- a/libbb/interface.c +++ b/libbb/interface.c @@ -15,7 +15,7 @@ * that either displays or sets the characteristics of * one or more of the system's networking interfaces. * - * Version: $Id: interface.c,v 1.16 2003/07/14 21:20:55 andersen Exp $ + * Version: $Id: interface.c,v 1.17 2003/07/22 08:56:46 andersen Exp $ * * Author: Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org> * and others. Copyright 1993 MicroWalt Corporation @@ -76,6 +76,7 @@ #include <fcntl.h> #include <ctype.h> #include <sys/ioctl.h> +#include <sys/types.h> #include <net/if.h> #include <net/if_arp.h> #include "libbb.h" @@ -88,10 +89,6 @@ static int procnetdev_vsn = 1; -/* Ugh. But libc5 doesn't provide POSIX types. */ -#include <asm/types.h> - - #ifdef HAVE_HWSLIP #include <net/if_slip.h> #endif |