massive sync up of my code to CVS. not sure what changed.

This commit is contained in:
brianb
2002-01-24 12:34:10 +00:00
parent 71775b190a
commit ea8fd2a6ba
24 changed files with 425 additions and 165 deletions

View File

@@ -21,7 +21,6 @@
#include "mdbsql.h"
#include "parser.h"
extern MdbSQL *g_sql;
%}
%%
@@ -49,6 +48,10 @@ like { return LIKE; }
. { return yytext[0]; }
%%
int yywrap()
{
return 1;
}
void yyerror(char *s)
{
fprintf(stderr,"Error at Line : %s near %s\n", s, yytext);