[BusyBox-cvs] busybox/scripts/config lkc_proto.h,1.1,1.2
Erik Andersen
andersen at codepoet.org
Mon Mar 31 16:27:22 UTC 2003
Update of /var/cvs/busybox/scripts/config
In directory winder:/tmp/cvs-serv1817
Modified Files:
lkc_proto.h
Log Message:
Avoid errors with buggy preprocessors
Index: lkc_proto.h
===================================================================
RCS file: /var/cvs/busybox/scripts/config/lkc_proto.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- lkc_proto.h 5 Dec 2002 08:41:07 -0000 1.1
+++ lkc_proto.h 31 Mar 2003 16:27:18 -0000 1.2
@@ -5,7 +5,7 @@
P(conf_write,int,(const char *name));
/* menu.c */
-P(rootmenu,struct menu,);
+extern struct menu rootmenu;
P(menu_is_visible,bool,(struct menu *menu));
P(menu_get_prompt,const char *,(struct menu *menu));
@@ -14,7 +14,7 @@
/* symbol.c */
P(symbol_hash,struct symbol *,[SYMBOL_HASHSIZE]);
-P(sym_change_count,int,);
+extern int sym_change_count;
P(sym_lookup,struct symbol *,(const char *name, int isconst));
P(sym_find,struct symbol *,(const char *name));
More information about the busybox-cvs
mailing list