]> git.saurik.com Git - wxWidgets.git/commitdiff
additions for __MWERKS__
authorStefan Csomor <csomor@advancedconcepts.ch>
Thu, 16 Jan 2003 06:47:22 +0000 (06:47 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Thu, 16 Jan 2003 06:47:22 +0000 (06:47 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18763 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/regex/regcomp.c
src/regex/regerror.c
src/regex/regexec.c
src/regex/regfree.c

index 17557ddd14eaa0138e843cf446aebcd9318f2ca4..19f4947f0f415ab3c57e42e290093614a035c792 100644 (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>
index 1bb1ec1ce842d5cb19e2657ad737359956586589..8be61f604174c83318f68a4d094eb1f8652a8742 100644 (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>
index 7e314950e7501cf7f88904aeb7e0368ec7d47d1e..225c4d5ec77b66517c2bef519c28a87d4e2b5cc8 100644 (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>
index 9c1488ab23a319ebe78c5e22eb4412a01fc525e7..857b2bfe26477fc0fe3f2026c40862f6603633a0 100644 (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"