diff options
author | Graham Madarasz <graham@lindenlab.com> | 2013-06-04 12:57:03 -0700 |
---|---|---|
committer | Graham Madarasz <graham@lindenlab.com> | 2013-06-04 12:57:03 -0700 |
commit | 2750e86beb8220baa62f978c7ccb391654eb955b (patch) | |
tree | f2ff79008b698161775622c6c36099e15d028d07 /indra/lscript/lscript_compile/indra.l | |
parent | 97a2171ea88fe52060e1dfe3fb09d2c320e1bb10 (diff) |
MAINT-2740 and MAINT-2672 rework after code review for 2740 fix and include 2672 fix needed for doing local integ tests
Diffstat (limited to 'indra/lscript/lscript_compile/indra.l')
-rwxr-xr-x | indra/lscript/lscript_compile/indra.l | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/indra/lscript/lscript_compile/indra.l b/indra/lscript/lscript_compile/indra.l index b2c49083cb..1bb38bbf65 100755 --- a/indra/lscript/lscript_compile/indra.l +++ b/indra/lscript/lscript_compile/indra.l @@ -79,11 +79,9 @@ void parse_string(); #define yyfree indra_free -#if defined(__cplusplus) -extern "C" { int yylex( void ); } -extern "C" { int yyparse( void ); } -extern "C" { int yyerror(const char *fmt, ...); } -#endif +int yylex( void ); +int yyparse( void ); +int yyerror(const char *fmt, ...); %} |