Updated to match trunk/uClibc/extra/config as of r10132, and thus

Linux 2.6.11.
This commit is contained in:
Peter Kjellerstedt
2005-04-19 09:55:06 +00:00
parent 2bf88a891f
commit bae38db8e4
23 changed files with 905 additions and 490 deletions

View File

@ -31,14 +31,14 @@ char *defconfig_file;
static int indent = 1;
static int valid_stdin = 1;
static int conf_cnt;
static char line[128];
static signed char line[128];
static struct menu *rootEntry;
static char nohelp_text[] = "Sorry, no help available for this option yet.\n";
static void strip(char *str)
static void strip(signed char *str)
{
char *p = str;
signed char *p = str;
int l;
while ((isspace(*p)))