diff options
author | sisyphus <sisyphus@cpan.org> | 2018-10-25 19:26:29 +1100 |
---|---|---|
committer | Tony Cook <tony@develop-help.com> | 2018-12-11 15:41:00 +1100 |
commit | 238ed136cd56b911fe86fab8989a4ed9fde1ef6e (patch) | |
tree | 49e6d5d4c4be98bf32c454b5d6a90b1e818f14b8 /ext | |
parent | 90f54b14003241779ae6decaab2793fa4cd6d325 (diff) | |
download | perl-238ed136cd56b911fe86fab8989a4ed9fde1ef6e.tar.gz |
POSIX.xs - support C99 math for mingw
Diffstat (limited to 'ext')
-rw-r--r-- | ext/POSIX/POSIX.xs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/POSIX/POSIX.xs b/ext/POSIX/POSIX.xs index 90d7a3de61..fb289d2fd6 100644 --- a/ext/POSIX/POSIX.xs +++ b/ext/POSIX/POSIX.xs @@ -572,7 +572,7 @@ static int not_here(const char *s); # undef c99_trunc #endif -#ifdef WIN32 +#ifdef _MSC_VER /* Some APIs exist under Win32 with "underbar" names. */ # undef c99_hypot |