mirror of
https://github.com/sheumann/hush.git
synced 2024-10-31 19:04:47 +00:00
18 lines
292 B
C
18 lines
292 B
C
/* vi: set sw=4 ts=4: */
|
|
#include <unistd.h>
|
|
|
|
#include "../include/autoconf.h"
|
|
#include "../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;
|
|
}
|