busybox/applets/usage.c

30 lines
625 B
C
Raw Normal View History

/* vi: set sw=4 ts=4: */
#include <unistd.h>
2006-10-05 15:47:08 +05:30
2007-08-13 02:29:07 +05:30
/* Just #include "autoconf.h" doesn't work for builds in separate
* object directory */
#include "../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(...)
#else
#define BB_MMU 1
#define USE_FOR_NOMMU(...)
#define USE_FOR_MMU(...) __VA_ARGS__
#endif
static const char usage_messages[] = ""
#define MAKE_USAGE
2006-10-20 03:40:07 +05:30
#include "usage.h"
#include "applets.h"
;
int main(void)
{
write(STDOUT_FILENO, usage_messages, sizeof(usage_messages));
return 0;
}