diff options
author | Dagfinn Ilmari Mannsåker <ilmari@ilmari.org> | 2020-07-19 00:22:13 +0100 |
---|---|---|
committer | Dagfinn Ilmari Mannsåker <ilmari@ilmari.org> | 2020-07-20 13:26:59 +0100 |
commit | 233050fdd35e6b614a1a299227c441350fbcc1e3 (patch) | |
tree | fe0b0ac490e7db8b3913b43addb31fbf65937ff0 | |
parent | fae1e72be2049299c589fc851d41287ac5a7ea13 (diff) | |
download | perl-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.h | 10 |
1 files changed, 0 insertions, 10 deletions
@@ -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 |