additions for __MWERKS__

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18763 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor 2003-01-16 06:47:22 +00:00
parent 513c3efc49
commit 1b6b675be3
4 changed files with 16 additions and 0 deletions

View File

@ -1,4 +1,8 @@
#ifdef __MWERKS__
typedef long off_t ;
#else
#include <sys/types.h>
#endif
#include <stdio.h>
#include <string.h>
#include <ctype.h>

View File

@ -1,4 +1,8 @@
#ifdef __MWERKS__
typedef long off_t ;
#else
#include <sys/types.h>
#endif
#include <stdio.h>
#include <string.h>
#include <ctype.h>

View File

@ -5,7 +5,11 @@
* macros that code uses. This lets the same code operate on two different
* representations for state sets.
*/
#ifdef __MWERKS__
typedef long off_t ;
#else
#include <sys/types.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

View File

@ -1,4 +1,8 @@
#ifdef __MWERKS__
typedef long off_t ;
#else
#include <sys/types.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include "regex.h"