Patch from Dennis Vlasenko to add the option to compress help text.

This commit is contained in:
Rob Landley 2006-04-27 23:34:46 +00:00
parent d5b9428bb6
commit 7e21d5f6b1
7 changed files with 101 additions and 23 deletions

14
scripts/usage.c Normal file
View file

@ -0,0 +1,14 @@
#include <unistd.h>
#include "busybox.h"
static const char usage_messages[] =
#define MAKE_USAGE
#include "usage.h"
#include "applets.h"
;
int main(void)
{
write(1, usage_messages, sizeof(usage_messages));
return 0;
}