From b4fafc4fa7edc4c04c3c0affae0d7f79a63e8d2f Mon Sep 17 00:00:00 2001 From: Alan Coopersmith Date: Wed, 28 Dec 2011 20:57:55 -0800 Subject: Delete redundant redeclarations of extern Atoms in symbols.c Fixes gcc warnings of: symbols.c:43: warning: redundant redeclaration of 'tok_ONE_LEVEL' tokens.h:99: warning: previous declaration of 'tok_ONE_LEVEL' was here symbols.c:44: warning: redundant redeclaration of 'tok_TWO_LEVEL' tokens.h:100: warning: previous declaration of 'tok_TWO_LEVEL' was here symbols.c:45: warning: redundant redeclaration of 'tok_KEYPAD' tokens.h:102: warning: previous declaration of 'tok_KEYPAD' was here Signed-off-by: Alan Coopersmith --- symbols.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/symbols.c b/symbols.c index 625fe96..5547999 100644 --- a/symbols.c +++ b/symbols.c @@ -40,10 +40,6 @@ #include "misc.h" #include "alias.h" -extern Atom tok_ONE_LEVEL; -extern Atom tok_TWO_LEVEL; -extern Atom tok_KEYPAD; - /***====================================================================***/ #define RepeatYes 1 -- cgit v1.2.3