Tomato 1.25
[tomato.git] / release / src / router / busybox / applets / usage.c
blob1e038b3672c96aec8bf51a7bc2c0855cab8df999
1 /* vi: set sw=4 ts=4: */
2 /*
3 * Copyright (C) 2008 Denys Vlasenko.
5 * Licensed under GPLv2, see file LICENSE in this tarball for details.
6 */
7 #include <unistd.h>
9 /* Just #include "autoconf.h" doesn't work for builds in separate
10 * object directory */
11 #include "../include/autoconf.h"
13 /* Since we can't use platform.h, have to do this again by hand: */
14 #if ENABLE_NOMMU
15 #define BB_MMU 0
16 #define USE_FOR_NOMMU(...) __VA_ARGS__
17 #define USE_FOR_MMU(...)
18 #else
19 #define BB_MMU 1
20 #define USE_FOR_NOMMU(...)
21 #define USE_FOR_MMU(...) __VA_ARGS__
22 #endif
24 static const char usage_messages[] = ""
25 #define MAKE_USAGE
26 #include "usage.h"
27 #include "applets.h"
30 int main(void)
32 write(STDOUT_FILENO, usage_messages, sizeof(usage_messages));
33 return 0;