mirror of
https://github.com/sheumann/hush.git
synced 2024-11-05 06:07:00 +00:00
b8429fb1f4
[spotted by Bernhard Fischer <rep.nop@aon.at>]
18 lines
295 B
C
18 lines
295 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;
|
|
}
|