In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/ea4642524cb9cd6a3625b957b4f2736e08d7e30d?hp=dc9f3e4bb076a8cc6c89523b8cf6ffc3d6ab630e>

- Log -----------------------------------------------------------------
commit ea4642524cb9cd6a3625b957b4f2736e08d7e30d
Author: Jarkko Hietaniemi <[email protected]>
Date:   Mon Sep 1 17:45:49 2014 -0400

    POSIX math: problems found in Win32.
-----------------------------------------------------------------------

Summary of changes:
 ext/POSIX/POSIX.xs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ext/POSIX/POSIX.xs b/ext/POSIX/POSIX.xs
index 5073733..6740f5e 100644
--- a/ext/POSIX/POSIX.xs
+++ b/ext/POSIX/POSIX.xs
@@ -516,7 +516,7 @@ static NV my_fmin(NV x, NV y)
 #  define c99_fmin my_fmin
 #endif
 
-static NV my_fpclassify(NV x)
+static IV my_fpclassify(NV x)
 {
 #if defined(HAS_FPCLASSIFY) && defined(FP_PLUS_INF) /* E.g. HP-UX */
   switch (Perl_fp_class(x)) {
@@ -705,7 +705,7 @@ static NV my_round(NV x)
 
 #ifndef c99_scalbn
 #   if defined(Perl_ldexp) && FLT_RADIX == 2
-static NV my_scalbn(NV x)
+static NV my_scalbn(NV x, int y)
 {
   return Perl_ldexp(x, y);
 }

--
Perl5 Master Repository

Reply via email to