diff options
author | Denys Vlasenko | 2009-10-02 01:10:32 +0200 |
---|---|---|
committer | Denys Vlasenko | 2009-10-02 01:10:32 +0200 |
commit | acabf8fcb86302e55e01f0a20d5ff9914791416a (patch) | |
tree | b1eff7768689d003f5c72a1ab175b1af52019012 /applets/usage.c | |
parent | 3a7034c27b7fa8f3f08e2ace769f165f46afa0e3 (diff) | |
download | busybox-acabf8fcb86302e55e01f0a20d5ff9914791416a.zip busybox-acabf8fcb86302e55e01f0a20d5ff9914791416a.tar.gz |
Update documentation generator so that it sucks less
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'applets/usage.c')
-rw-r--r-- | applets/usage.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/applets/usage.c b/applets/usage.c index 1e038b3..d4fd12f 100644 --- a/applets/usage.c +++ b/applets/usage.c @@ -8,17 +8,17 @@ /* Just #include "autoconf.h" doesn't work for builds in separate * object directory */ -#include "../include/autoconf.h" +#include "autoconf.h" /* Since we can't use platform.h, have to do this again by hand: */ #if ENABLE_NOMMU -#define BB_MMU 0 -#define USE_FOR_NOMMU(...) __VA_ARGS__ -#define USE_FOR_MMU(...) +# define BB_MMU 0 +# define USE_FOR_NOMMU(...) __VA_ARGS__ +# define USE_FOR_MMU(...) #else -#define BB_MMU 1 -#define USE_FOR_NOMMU(...) -#define USE_FOR_MMU(...) __VA_ARGS__ +# define BB_MMU 1 +# define USE_FOR_NOMMU(...) +# define USE_FOR_MMU(...) __VA_ARGS__ #endif static const char usage_messages[] = "" |