Update of /cvsroot/cscope/cscope/src
In directory usw-pr-cvs1:/tmp/cvs-serv22668/src
Modified Files:
scanner.h
Log Message:
LEX and SUNOS scanner fix (cohrs)
Index: scanner.h
===================================================================
RCS file: /cvsroot/cscope/cscope/src/scanner.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** scanner.h 2001/06/01 12:43:24 1.1
--- scanner.h 2001/07/05 21:25:03 1.2
***************
*** 76,80 ****
/* HBB 20010430: if lex is used instead of flex, have to simulate the
* private copies of yytext and yytext for the world outside scanner.l: */
! #ifdef __OSF1__ /* FIXME: there should be a feature test for this! */
extern char yytext[];
#else
--- 76,80 ----
/* HBB 20010430: if lex is used instead of flex, have to simulate the
* private copies of yytext and yytext for the world outside scanner.l: */
! #ifdef __OSF1__ || defined(__sun) /* FIXME: there should be a feature test for this! */
extern char yytext[];
#else
|