From 88cb58eb9303e125748892ecc07bcd884fc12048 Mon Sep 17 00:00:00 2001 From: andersen Date: Sat, 23 Jun 2001 13:49:14 +0000 Subject: These were broken when using dmalloc due to include file ordering problems. busybox.h must be last. -Erik git-svn-id: svn://busybox.net/trunk/busybox@2890 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- networking/hostname.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'networking') diff --git a/networking/hostname.c b/networking/hostname.c index 75e4d2e57..573c8cece 100644 --- a/networking/hostname.c +++ b/networking/hostname.c @@ -1,6 +1,6 @@ /* vi: set sw=4 ts=4: */ /* - * $Id: hostname.c,v 1.28 2001/05/16 15:40:48 kraai Exp $ + * $Id: hostname.c,v 1.29 2001/06/23 13:49:14 andersen Exp $ * Mini hostname implementation for busybox * * Copyright (C) 1999 by Randolph Chung @@ -23,7 +23,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "busybox.h" #include #include #include @@ -31,6 +30,7 @@ #include #include #include +#include "busybox.h" static void do_sethostname(char *s, int isfile) { -- cgit v1.2.3-55-g6feb