|
From: Hans-Bernhard B. <br...@us...> - 2005-01-31 16:50:42
|
Update of /cvsroot/cscope/cscope/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18779/src Modified Files: scanner.h Log Message: Make yytext signed for AIX lex. Index: scanner.h =================================================================== RCS file: /cvsroot/cscope/cscope/src/scanner.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** scanner.h 11 Jul 2001 13:36:27 -0000 1.3 --- scanner.h 31 Jan 2005 16:50:33 -0000 1.4 *************** *** 77,81 **** * private copies of yytext and yytext for the world outside scanner.l: */ /* FIXME: there should be a feature test for this! */ ! #if defined(__OSF1__) || defined(__sun) extern char yytext[]; #else --- 77,81 ---- * private copies of yytext and yytext for the world outside scanner.l: */ /* FIXME: there should be a feature test for this! */ ! #if defined(__OSF1__) || defined(__sun) || defined(_AIX) extern char yytext[]; #else |