busybox/miscutils/bbconfig.c

13 lines
285 B
C
Raw Normal View History

2006-03-30 01:24:02 +05:30
/* vi: set sw=4 ts=4: */
2006-03-30 07:31:48 +05:30
/* This file was released into the public domain by Paul Fox.
2006-03-30 01:24:02 +05:30
*/
#include "libbb.h"
#include "bbconfigopts.h"
int bbconfig_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
int bbconfig_main(int argc, char **argv)
{
printf(bbconfig_config);
return 0;
}