From e15d7573a1263fb364d1678c3a46be47a8b5e5ea Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Fri, 2 Jun 2006 20:56:16 +0000 Subject: - move #include busybox.h to the very top so we pull in the config and eventual platform specific includes in early. --- applets/applets.c | 2 +- applets/busybox.c | 4 +++- applets/version.c | 7 +++++++ 3 files changed, 11 insertions(+), 2 deletions(-) (limited to 'applets') diff --git a/applets/applets.c b/applets/applets.c index 1913676dc..aea116add 100644 --- a/applets/applets.c +++ b/applets/applets.c @@ -12,12 +12,12 @@ * Licensed under GPLv2 or later, see file License in this tarball for details. */ +#include "busybox.h" #include #include #include #include #include -#include "busybox.h" #if ENABLE_SHOW_USAGE && !ENABLE_FEATURE_COMPRESS_USAGE static const char usage_messages[] = diff --git a/applets/busybox.c b/applets/busybox.c index 25bb36d9c..a92ddbd0e 100644 --- a/applets/busybox.c +++ b/applets/busybox.c @@ -1,13 +1,15 @@ /* vi: set sw=4 ts=4: */ /* + * BusyBox' main applet dispatcher. + * * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. */ +#include "busybox.h" #include #include #include #include #include -#include "busybox.h" #if ENABLE_LOCALE_SUPPORT #include #else diff --git a/applets/version.c b/applets/version.c index 6f6ec24ff..ce75f1ff9 100644 --- a/applets/version.c +++ b/applets/version.c @@ -1,3 +1,10 @@ +/* vi: set sw=4 ts=4: */ +/* + * Version stuff. + * + * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. + */ + #include "busybox.h" #ifndef BB_EXTRA_VERSION -- cgit v1.2.3