Welcome to mirror list, hosted at ThFree Co, Russian Federation.

usage.c « applets - git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c128b52f86cd4cbc736927fcd0ca138597e46ccc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* vi: set sw=4 ts=4: */
#include <unistd.h>

#include "autoconf.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;
}