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
|
|
|
*/
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2005-08-01 21:34:40 +05:30
|
|
|
#include "bbconfigopts.h"
|
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int bbconfig_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 14:48:54 +05:30
|
|
|
int bbconfig_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
|
2005-08-01 21:34:40 +05:30
|
|
|
{
|
|
|
|
printf(bbconfig_config);
|
|
|
|
return 0;
|
|
|
|
}
|