hush/miscutils/bbconfig.c
Denis Vlasenko 06af216528 suppress warnings about easch <applet>_main() having
no preceding prototype
2007-02-03 17:28:39 +00:00

13 lines
263 B
C

/* 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;
}