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

bbconfig.c « miscutils - git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6896506e6a4c7c7f7e1c36b11bfdcd3c721a1e43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* vi: set sw=4 ts=4: */
/* This file was released into the public domain by Paul Fox.
 */
#include "busybox.h"
#include "bbconfigopts.h"

int bbconfig_main(int argc, char **argv);
int bbconfig_main(int argc, char **argv)
{
	printf(bbconfig_config);
	return 0;
}