Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 80552
Collapse All | Expand All

(-)linux-2.6.8.1.old/scripts/kconfig/lkc.h (-1 lines)
Lines 60-66 Link Here
60
int file_write_dep(const char *name);
60
int file_write_dep(const char *name);
61
61
62
extern struct menu *current_entry;
62
extern struct menu *current_entry;
63
extern struct menu *current_menu;
64
63
65
/* symbol.c */
64
/* symbol.c */
66
void sym_init(void);
65
void sym_init(void);
(-)linux-2.6.8.1.old/scripts/kconfig/menu.c (-1 lines)
Lines 10-16 Link Here
10
#include "lkc.h"
10
#include "lkc.h"
11
11
12
struct menu rootmenu;
12
struct menu rootmenu;
13
struct menu *current_menu, *current_entry;
14
static struct menu **last_entry_ptr;
13
static struct menu **last_entry_ptr;
15
14
16
struct file *file_list;
15
struct file *file_list;
(-)linux-2.6.8.1.old/scripts/kconfig/zconf.tab.c_shipped (+2 lines)
Lines 175-180 Link Here
175
175
176
struct symbol *symbol_hash[257];
176
struct symbol *symbol_hash[257];
177
177
178
static struct menu *current_menu, *current_entry;
179
178
#define YYERROR_VERBOSE
180
#define YYERROR_VERBOSE
179
181
180
182
(-)linux-2.6.8.1.old/scripts/kconfig/zconf.y (+2 lines)
Lines 25-30 Link Here
25
25
26
struct symbol *symbol_hash[257];
26
struct symbol *symbol_hash[257];
27
27
28
static struct menu *current_menu, *current_entry;
29
28
#define YYERROR_VERBOSE
30
#define YYERROR_VERBOSE
29
%}
31
%}
30
%expect 40
32
%expect 40

Return to bug 80552