Update of /cvsroot/agd/server/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15898
Modified Files:
dflex.l
Log Message:
stringdup renamed to xstrdup
Index: dflex.l
===================================================================
RCS file: /cvsroot/agd/server/src/dflex.l,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- dflex.l 23 Jul 2004 14:23:20 -0000 1.5
+++ dflex.l 23 Jul 2004 17:19:05 -0000 1.6
@@ -45,7 +45,7 @@
return L_DATA_TYPE;
}
{IDENTIFIER} {
- char *s = stringdup(yytext);
+ char *s = xstrdup(yytext);
yylval.s = s;
pos += strlen(s);
return L_IDENTIFIER;
|