aboutsummaryrefslogtreecommitdiff
path: root/math
diff options
context:
space:
mode:
authorGabriel F. T. Gomes <gftg@linux.vnet.ibm.com>2017-03-28 14:48:57 -0300
committerGabriel F. T. Gomes <gftg@linux.vnet.ibm.com>2017-03-30 15:22:27 -0300
commit10614335d1237704a5496758185ad7eb4bd65287 (patch)
tree3c91fcef4ebe9f9f2a6c0a9c72b864325890b1a7 /math
parentf264cca59380bca8f372bd09a8da7c9e1bbbf493 (diff)
downloadglibc-10614335d1237704a5496758185ad7eb4bd65287.zip
glibc-10614335d1237704a5496758185ad7eb4bd65287.tar.gz
glibc-10614335d1237704a5496758185ad7eb4bd65287.tar.bz2
Change return type in the declaration of __ieee754_rem_pio2l
The implementation of __ieee754_rem_pio2l in ldbl-128, ldbl-128ibm, and ldbl-96 return the type int32_t, whereas math_private.h declares it as returning int. This patch changes the declaration to match the declaration in thoses directories, as well as it changes the stub implementation in math/e_rem_pio2l.c, similarly. * math/e_rem_pio2l.c (__ieee754_rem_pio2l): Change return type to int32_t. * sysdeps/generic/math_private.h: Declare __ieee754_rem_pio2l as returning int32_t.
Diffstat (limited to 'math')
-rw-r--r--math/e_rem_pio2l.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/math/e_rem_pio2l.c b/math/e_rem_pio2l.c
index 03ac2ef..2ea873b 100644
--- a/math/e_rem_pio2l.c
+++ b/math/e_rem_pio2l.c
@@ -3,7 +3,7 @@
#include <errno.h>
#include <math_private.h>
-int
+int32_t
__ieee754_rem_pio2l (long double x, long double *y)
{
fputs ("__ieee754_rem_pio2l not implemented\n", stderr);