diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2001-05-05 03:19:12 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2001-05-05 03:19:12 +0000 |
commit | 6b8c550d88e87c46bd8b168920492b54bdc9dc9f (patch) | |
tree | d97d6ffb689eb0c52666379d70e3d3fcf3c284ab /libbb | |
parent | 2dcfba71170ad91538a7dbb4dd97ec0c1d2f9788 (diff) | |
download | busybox-6b8c550d88e87c46bd8b168920492b54bdc9dc9f.tar.gz |
include libbb.h after other includes
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/interface.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libbb/interface.c b/libbb/interface.c index b453b6f67..1d36c13bb 100644 --- a/libbb/interface.c +++ b/libbb/interface.c @@ -3,7 +3,7 @@ * that either displays or sets the characteristics of * one or more of the system's networking interfaces. * - * Version: $Id: interface.c,v 1.1 2001/04/19 16:55:27 andersen Exp $ + * Version: $Id: interface.c,v 1.2 2001/05/05 03:19:12 bug1 Exp $ * * Author: Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org> * and others. Copyright 1993 MicroWalt Corporation @@ -37,8 +37,6 @@ /* #define KEEP_UNUSED */ -#include "libbb.h" - /* * * Protocol Families. @@ -80,6 +78,7 @@ #include <netinet/in.h> #include <arpa/inet.h> #include <arpa/nameser.h> +#include "libbb.h" #define _(x) x #define _PATH_PROCNET_DEV "/proc/net/dev" |