copysignf tests: Fix.
authorBruno Haible <bruno@clisp.org>
Sun, 20 Nov 2011 16:38:19 +0000 (17:38 +0100)
committerBruno Haible <bruno@clisp.org>
Sun, 20 Nov 2011 16:38:19 +0000 (17:38 +0100)
* tests/test-copysignf.c: Fix signature check.

ChangeLog
tests/test-copysignf.c

index 694a615..21a9c6d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2011-11-20  Bruno Haible  <bruno@clisp.org>
 
+       copysignf tests: Fix.
+       * tests/test-copysignf.c: Fix signature check.
+
+2011-11-20  Bruno Haible  <bruno@clisp.org>
+
        fma: Remove unused code.
        * lib/fma.c (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): Remove
        unused macros.
index 396e090..b745e79 100644 (file)
@@ -21,7 +21,7 @@
 #include <math.h>
 
 #include "signature.h"
-SIGNATURE_CHECK (copysignf, double, (double, double));
+SIGNATURE_CHECK (copysignf, float, (float, float));
 
 #include "macros.h"
 #include "minus-zero.h"