aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2001-05-05 03:19:12 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2001-05-05 03:19:12 +0000
commit6b8c550d88e87c46bd8b168920492b54bdc9dc9f (patch)
treed97d6ffb689eb0c52666379d70e3d3fcf3c284ab
parent2dcfba71170ad91538a7dbb4dd97ec0c1d2f9788 (diff)
downloadbusybox-w32-6b8c550d88e87c46bd8b168920492b54bdc9dc9f.tar.gz
busybox-w32-6b8c550d88e87c46bd8b168920492b54bdc9dc9f.tar.bz2
busybox-w32-6b8c550d88e87c46bd8b168920492b54bdc9dc9f.zip
include libbb.h after other includes
-rw-r--r--libbb/interface.c5
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 @@
3 * that either displays or sets the characteristics of 3 * that either displays or sets the characteristics of
4 * one or more of the system's networking interfaces. 4 * one or more of the system's networking interfaces.
5 * 5 *
6 * Version: $Id: interface.c,v 1.1 2001/04/19 16:55:27 andersen Exp $ 6 * Version: $Id: interface.c,v 1.2 2001/05/05 03:19:12 bug1 Exp $
7 * 7 *
8 * Author: Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org> 8 * Author: Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
9 * and others. Copyright 1993 MicroWalt Corporation 9 * and others. Copyright 1993 MicroWalt Corporation
@@ -37,8 +37,6 @@
37 37
38/* #define KEEP_UNUSED */ 38/* #define KEEP_UNUSED */
39 39
40#include "libbb.h"
41
42/* 40/*
43 * 41 *
44 * Protocol Families. 42 * Protocol Families.
@@ -80,6 +78,7 @@
80#include <netinet/in.h> 78#include <netinet/in.h>
81#include <arpa/inet.h> 79#include <arpa/inet.h>
82#include <arpa/nameser.h> 80#include <arpa/nameser.h>
81#include "libbb.h"
83 82
84#define _(x) x 83#define _(x) x
85#define _PATH_PROCNET_DEV "/proc/net/dev" 84#define _PATH_PROCNET_DEV "/proc/net/dev"