From df3f8aa2b910f9281d3881b8b9489f587296d0a8 Mon Sep 17 00:00:00 2001
From: Luigi Rizzo <rizzo@icir.org>
Date: Tue, 2 May 2006 17:37:33 +0000
Subject: [PATCH] remove useless 'extern' declaration

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@24216 65c4cc65-6c06-0410-ace0-fbb531ad65f3
---
 pbx/ael/ael.tab.c | 1 -
 pbx/ael/ael.y     | 1 -
 2 files changed, 2 deletions(-)

diff --git a/pbx/ael/ael.tab.c b/pbx/ael/ael.tab.c
index 29e85acf3d..8268dd6e21 100644
--- a/pbx/ael/ael.tab.c
+++ b/pbx/ael/ael.tab.c
@@ -3366,7 +3366,6 @@ void yyerror(YYLTYPE *locp, struct parse_io *parseio,  char const *s)
 static struct pval *npval(pvaltype type, int first_line, int last_line,
 	int first_column, int last_column)
 {
-	extern char *my_file;
 	pval *z = calloc(1, sizeof(struct pval));
 	z->type = type;
 	z->startline = first_line;
diff --git a/pbx/ael/ael.y b/pbx/ael/ael.y
index 103a7e8e45..1d309cd76e 100644
--- a/pbx/ael/ael.y
+++ b/pbx/ael/ael.y
@@ -830,7 +830,6 @@ void yyerror(YYLTYPE *locp, struct parse_io *parseio,  char const *s)
 static struct pval *npval(pvaltype type, int first_line, int last_line,
 	int first_column, int last_column)
 {
-	extern char *my_file;
 	pval *z = calloc(1, sizeof(struct pval));
 	z->type = type;
 	z->startline = first_line;
-- 
GitLab