comment some code

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@23550 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Luigi Rizzo 2006-04-30 09:06:28 +00:00
parent 8e9058679a
commit 9a8a037250
2 changed files with 26 additions and 6 deletions

View File

@ -493,7 +493,19 @@ static int c_prevword(void)
}
/* used by the bison code */
/*
* The following three functions, reset_*, are used in the bison
* code to switch context. As a consequence, we need to
* declare them global and add a prototype so that the
* compiler does not complain.
*
* NOTE: yyg is declared because it is used in the BEGIN macros,
* though that should be hidden as the macro changes
* depending on the flex options that we use - in particular,
* %reentrant changes the way the macro is declared;
* without %reentrant, BEGIN uses yystart instead of yyg
*/
void reset_parencount(yyscan_t yyscanner );
void reset_parencount(yyscan_t yyscanner )
{
@ -505,7 +517,6 @@ void reset_parencount(yyscan_t yyscanner )
BEGIN(paren);
}
/* used by the bison code */
void reset_semicount(yyscan_t yyscanner );
void reset_semicount(yyscan_t yyscanner )
{
@ -514,7 +525,6 @@ void reset_semicount(yyscan_t yyscanner )
BEGIN(semic);
}
/* used by the bison code */
void reset_argcount(yyscan_t yyscanner );
void reset_argcount(yyscan_t yyscanner )
{

View File

@ -2781,7 +2781,19 @@ static int c_prevword(void)
}
/* used by the bison code */
/*
* The following three functions, reset_*, are used in the bison
* code to switch context. As a consequence, we need to
* declare them global and add a prototype so that the
* compiler does not complain.
*
* NOTE: yyg is declared because it is used in the BEGIN macros,
* though that should be hidden as the macro changes
* depending on the flex options that we use - in particular,
* %reentrant changes the way the macro is declared;
* without %reentrant, BEGIN uses yystart instead of yyg
*/
void reset_parencount(yyscan_t yyscanner );
void reset_parencount(yyscan_t yyscanner )
{
@ -2793,7 +2805,6 @@ void reset_parencount(yyscan_t yyscanner )
BEGIN(paren);
}
/* used by the bison code */
void reset_semicount(yyscan_t yyscanner );
void reset_semicount(yyscan_t yyscanner )
{
@ -2802,7 +2813,6 @@ void reset_semicount(yyscan_t yyscanner )
BEGIN(semic);
}
/* used by the bison code */
void reset_argcount(yyscan_t yyscanner );
void reset_argcount(yyscan_t yyscanner )
{