View | Details | Raw Unified | Return to bug 9882
Collapse All | Expand All

(-)xbsql-0.11.orig/xbsql/lex.yy.c (-2 / +2 lines)
Lines 628-634 Link Here
628
YY_RULE_SETUP
628
YY_RULE_SETUP
629
#line 12 "xbsql.l"
629
#line 12 "xbsql.l"
630
{
630
{
631
			string	('\'')		;
631
			String	('\'')		;
632
			return	T_STRING	;
632
			return	T_STRING	;
633
			}
633
			}
634
	YY_BREAK
634
	YY_BREAK
Lines 1712-1718 Link Here
1712
#define	HASHMSK	(HASHSIZ-1)
1712
#define	HASHMSK	(HASHSIZ-1)
1713
static	KEYWORD	*hashtab[HASHSIZ] ;
1713
static	KEYWORD	*hashtab[HASHSIZ] ;
1714
1714
1715
static	void	string
1715
static	void	String
1716
	(	int	qch
1716
	(	int	qch
1717
	)
1717
	)
1718
{
1718
{
(-)xbsql-0.11.orig/xbsql/xbsql.l (-2 / +2 lines)
Lines 10-16 Link Here
10
%%
10
%%
11
11
12
\'			{
12
\'			{
13
			string	('\'')		;
13
			String	('\'')		;
14
			return	T_STRING	;
14
			return	T_STRING	;
15
			}
15
			}
16
16
Lines 116-122 Link Here
116
#define	HASHMSK	(HASHSIZ-1)
116
#define	HASHMSK	(HASHSIZ-1)
117
static	KEYWORD	*hashtab[HASHSIZ] ;
117
static	KEYWORD	*hashtab[HASHSIZ] ;
118
118
119
static	void	string
119
static	void	String
120
	(	int	qch
120
	(	int	qch
121
	)
121
	)
122
{
122
{
(-)xbsql-0.11.orig/xbsql/xbsql.y (-1 / +1 lines)
Lines 11-17 Link Here
11
11
12
extern	void		yyerror	(const char *, ...) ;
12
extern	void		yyerror	(const char *, ...) ;
13
extern	int		yylex	()	;
13
extern	int		yylex	()	;
14
static	void		string	(int)	;
14
static	void		String	(int)	;
15
static	int		nextChar()	;
15
static	int		nextChar()	;
16
static	int		nextData(char *,  int, int) ;
16
static	int		nextData(char *,  int, int) ;
17
static	char		*textp		;
17
static	char		*textp		;

Return to bug 9882