diff options
Diffstat (limited to 'miscutils/bbconfig.c')
-rw-r--r-- | miscutils/bbconfig.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/miscutils/bbconfig.c b/miscutils/bbconfig.c new file mode 100644 index 000000000..ce14d4a1f --- /dev/null +++ b/miscutils/bbconfig.c | |||
@@ -0,0 +1,11 @@ | |||
1 | /* vi: set sw=4 ts=4: */ | ||
2 | /* This file was released into the public domain by Paul Fox. | ||
3 | */ | ||
4 | #include "busybox.h" | ||
5 | #include "bbconfigopts.h" | ||
6 | |||
7 | int bbconfig_main(int argc, char **argv) | ||
8 | { | ||
9 | printf(bbconfig_config); | ||
10 | return 0; | ||
11 | } | ||