aboutsummaryrefslogtreecommitdiff
path: root/applets/usage.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-10-02 01:10:32 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2009-10-02 01:10:32 +0200
commitacabf8fcb86302e55e01f0a20d5ff9914791416a (patch)
treeb1eff7768689d003f5c72a1ab175b1af52019012 /applets/usage.c
parent3a7034c27b7fa8f3f08e2ace769f165f46afa0e3 (diff)
downloadbusybox-w32-acabf8fcb86302e55e01f0a20d5ff9914791416a.tar.gz
busybox-w32-acabf8fcb86302e55e01f0a20d5ff9914791416a.tar.bz2
busybox-w32-acabf8fcb86302e55e01f0a20d5ff9914791416a.zip
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.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/applets/usage.c b/applets/usage.c
index 1e038b367..d4fd12f9b 100644
--- a/applets/usage.c
+++ b/applets/usage.c
@@ -8,17 +8,17 @@
8 8
9/* Just #include "autoconf.h" doesn't work for builds in separate 9/* Just #include "autoconf.h" doesn't work for builds in separate
10 * object directory */ 10 * object directory */
11#include "../include/autoconf.h" 11#include "autoconf.h"
12 12
13/* Since we can't use platform.h, have to do this again by hand: */ 13/* Since we can't use platform.h, have to do this again by hand: */
14#if ENABLE_NOMMU 14#if ENABLE_NOMMU
15#define BB_MMU 0 15# define BB_MMU 0
16#define USE_FOR_NOMMU(...) __VA_ARGS__ 16# define USE_FOR_NOMMU(...) __VA_ARGS__
17#define USE_FOR_MMU(...) 17# define USE_FOR_MMU(...)
18#else 18#else
19#define BB_MMU 1 19# define BB_MMU 1
20#define USE_FOR_NOMMU(...) 20# define USE_FOR_NOMMU(...)
21#define USE_FOR_MMU(...) __VA_ARGS__ 21# define USE_FOR_MMU(...) __VA_ARGS__
22#endif 22#endif
23 23
24static const char usage_messages[] = "" 24static const char usage_messages[] = ""