updated mac sources (CW 5.3 working , CW6 still having code gen problems)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9334 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -22,10 +22,19 @@ int yylex(void);
|
||||
int yylook(void);
|
||||
int yywrap(void);
|
||||
int yyback(int *, int);
|
||||
#ifdef __WXMAC__
|
||||
#if __MSL__ < 0x6000
|
||||
int read( int , char * , int ) ;
|
||||
#else
|
||||
int _read( int , void * , size_t ) ;
|
||||
#define read _read
|
||||
#endif
|
||||
#ifdef __WXMSW__
|
||||
int fileno( FILE* ) ;
|
||||
#else
|
||||
#if __MSL__ < 0x6000
|
||||
int fileno( void* ) ;
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/* You may need to put /DLEX_SCANNER in your makefile
|
||||
* if you're using LEX!
|
||||
|
Reference in New Issue
Block a user