summaryrefslogtreecommitdiff
path: root/scripts/kconfig/mconf.c
authormickeyl <mickeyl>2005-09-03 00:56:25 (UTC)
committer mickeyl <mickeyl>2005-09-03 00:56:25 (UTC)
commit5907b0aabc816287db5c7f2b1ec8d8bfce4d9c28 (patch) (side-by-side diff)
tree21cc663f18f6207dc23797b87aad517de2c3281a /scripts/kconfig/mconf.c
parent8a74037f6174f187ea3f5583d6c253752792128a (diff)
downloadopie-5907b0aabc816287db5c7f2b1ec8d8bfce4d9c28.zip
opie-5907b0aabc816287db5c7f2b1ec8d8bfce4d9c28.tar.gz
opie-5907b0aabc816287db5c7f2b1ec8d8bfce4d9c28.tar.bz2
fix for gcc4
Diffstat (limited to 'scripts/kconfig/mconf.c') (more/less context) (ignore whitespace changes)
-rw-r--r--scripts/kconfig/mconf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kconfig/mconf.c b/scripts/kconfig/mconf.c
index b9cf25f..0967471 100644
--- a/scripts/kconfig/mconf.c
+++ b/scripts/kconfig/mconf.c
@@ -67,49 +67,49 @@ load_config_help[] =
"configuration files. You should therefor leave this blank to abort.\n",
save_config_text[] =
"Enter a filename to which this configuration should be saved "
"as an alternate. Leave blank to abort.",
save_config_help[] =
"\n"
"For various reasons, one may wish to keep different\n"
"configurations available on a single machine.\n"
"\n"
"Entering a file name here will allow you to later retrieve, modify\n"
"and use the current configuration as an alternate to whatever\n"
"configuration options you have selected at that time.\n"
"\n"
"If you are uncertain what all this means then you should probably\n"
"leave this blank.\n"
;
static char buf[4096], *bufptr = buf;
static char input_buf[4096];
static char filename[PATH_MAX+1] = ".config";
static char *args[1024], **argptr = args;
static int indent = 0;
static struct termios ios_org;
static int rows, cols;
-static struct menu *current_menu;
+struct menu *current_menu;
static int child_count;
static int do_resize;
static int single_menu_mode;
static void conf(struct menu *menu);
static void conf_choice(struct menu *menu);
static void conf_string(struct menu *menu);
static void conf_load(void);
static void conf_save(void);
static void show_textbox(const char *title, const char *text, int r, int c);
static void show_helptext(const char *title, const char *text);
static void show_help(struct menu *menu);
static void show_readme(void);
static void cprint_init(void);
static int cprint1(const char *fmt, ...);
static void cprint_done(void);
static int cprint(const char *fmt, ...);
static void init_wsize(void)
{
struct winsize ws;
char *env;