Magellan Linux

Annotation of /tags/mkinitrd-6_1_12/busybox/miscutils/bbconfig.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 939 - (hide annotations) (download)
Tue Nov 17 21:24:51 2009 UTC (14 years, 7 months ago) by niro
File MIME type: text/plain
File size: 311 byte(s)
tagged 'mkinitrd-6_1_12'
1 niro 532 /* vi: set sw=4 ts=4: */
2     /* This file was released into the public domain by Paul Fox.
3     */
4 niro 816 #include "libbb.h"
5 niro 532 #include "bbconfigopts.h"
6    
7 niro 816 int bbconfig_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
8     int bbconfig_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
9 niro 532 {
10     printf(bbconfig_config);
11     return 0;
12     }