aboutsummaryrefslogtreecommitdiffstats
path: root/pbx/ael
diff options
context:
space:
mode:
authorrizzo <rizzo@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-02 17:37:33 +0000
committerrizzo <rizzo@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-02 17:37:33 +0000
commit533cd5d2f564c06f7ffbb1c7f798baf3b5905fdf (patch)
treef4967b32a65e2a5932bb0a99271fdea526b7fa4e /pbx/ael
parentea05e09317cf253878f5916403210eee8b02f9e1 (diff)
remove useless 'extern' declaration
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@24216 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'pbx/ael')
-rw-r--r--pbx/ael/ael.tab.c1
-rw-r--r--pbx/ael/ael.y1
2 files changed, 0 insertions, 2 deletions
diff --git a/pbx/ael/ael.tab.c b/pbx/ael/ael.tab.c
index 29e85acf3..8268dd6e2 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 103a7e8e4..1d309cd76 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;