summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDagfinn Ilmari Mannsåker <ilmari@ilmari.org>2020-07-19 00:22:13 +0100
committerDagfinn Ilmari Mannsåker <ilmari@ilmari.org>2020-07-20 13:26:59 +0100
commit233050fdd35e6b614a1a299227c441350fbcc1e3 (patch)
treefe0b0ac490e7db8b3913b43addb31fbf65937ff0
parentfae1e72be2049299c589fc851d41287ac5a7ea13 (diff)
downloadperl-233050fdd35e6b614a1a299227c441350fbcc1e3.tar.gz
Remove accidentally-reintroduced WinCE workaround
This was removed when Windows CE was support was removed in commit 79c32fc2889bdbdf21cb378e1628a84867a3ffcc but was accidentally reintroduced in d2c9cb5392e8c58c3bb1935fc3c098737224567c.
-rw-r--r--perl.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/perl.h b/perl.h
index 8f296e6df9..d444fa9b41 100644
--- a/perl.h
+++ b/perl.h
@@ -821,16 +821,6 @@ out of them.
#include <sys/types.h>
-/* EVC 4 SDK headers includes a bad definition of MB_CUR_MAX in stdlib.h
- which is included from stdarg.h. Bad definition not present in SD 2008
- SDK headers. wince.h is not yet included, so we cant fix this from there
- since by then MB_CUR_MAX will be defined from stdlib.h.
- cewchar.h includes a correct definition of MB_CUR_MAX and it is copied here
- since cewchar.h can't be included this early */
-#if defined(UNDER_CE) && (_MSC_VER < 1300)
-# define MB_CUR_MAX 1uL
-#endif
-
# ifdef I_WCHAR
# include <wchar.h>
# endif