]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/cwy_tab.c
fixed some crashes
[wxWidgets.git] / src / common / cwy_tab.c
index 050f96167f6491b874f29c113d83456e51104297..bfbe337922aeb68f7671ec70bfa2578f11756c34 100644 (file)
@@ -22,6 +22,19 @@ int yylex(void);
 int yylook(void);
 int yywrap(void);
 int yyback(int *, int);
+#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!