[asterisk-commits] trunk r22820 - in /trunk/pbx/ael: ael.flex ael_lex.c

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Thu Apr 27 03:13:40 MST 2006


Author: rizzo
Date: Thu Apr 27 05:13:39 2006
New Revision: 22820

URL: http://svn.digium.com/view/asterisk?rev=22820&view=rev
Log:
staticize c_prevword()


Modified:
    trunk/pbx/ael/ael.flex
    trunk/pbx/ael/ael_lex.c

Modified: trunk/pbx/ael/ael.flex
URL: http://svn.digium.com/view/asterisk/trunk/pbx/ael/ael.flex?rev=22820&r1=22819&r2=22820&view=diff
==============================================================================
--- trunk/pbx/ael/ael.flex (original)
+++ trunk/pbx/ael/ael.flex Thu Apr 27 05:13:39 2006
@@ -536,9 +536,7 @@
 	return 1; /* error */
 }
 
-/* used by the bison code */
-int c_prevword(void);
-int c_prevword(void)
+static int c_prevword(void)
 {
 	char *c = prev_word;
 	int ret = 0;

Modified: trunk/pbx/ael/ael_lex.c
URL: http://svn.digium.com/view/asterisk/trunk/pbx/ael/ael_lex.c?rev=22820&r1=22819&r2=22820&view=diff
==============================================================================
--- trunk/pbx/ael/ael_lex.c (original)
+++ trunk/pbx/ael/ael_lex.c Thu Apr 27 05:13:39 2006
@@ -2872,9 +2872,7 @@
 	return 1; /* error */
 }
 
-/* used by the bison code */
-int c_prevword(void);
-int c_prevword(void)
+static int c_prevword(void)
 {
 	char *c = prev_word;
 	int ret = 0;



More information about the asterisk-commits mailing list