diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-05-04 15:15:17 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-05-04 15:15:17 +0000 |
commit | db8f5e9c5e7701e14ef54e4d2ebd671b283376f9 (patch) | |
tree | 31fc61b621f2adb6e4e70be7e051e92542a9ecca /toolchain | |
parent | 38c5311047945aaed9687026dfcfec3d135ee054 (diff) | |
download | upstream-db8f5e9c5e7701e14ef54e4d2ebd671b283376f9.tar.gz upstream-db8f5e9c5e7701e14ef54e4d2ebd671b283376f9.tar.bz2 upstream-db8f5e9c5e7701e14ef54e4d2ebd671b283376f9.zip |
uclibc 0.9.29: fix isinf, finite prototypes
SVN-Revision: 15588
Diffstat (limited to 'toolchain')
-rw-r--r-- | toolchain/uClibc/patches-0.9.29/240-math_call.patch | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/toolchain/uClibc/patches-0.9.29/240-math_call.patch b/toolchain/uClibc/patches-0.9.29/240-math_call.patch new file mode 100644 index 0000000000..a69fe4efd4 --- /dev/null +++ b/toolchain/uClibc/patches-0.9.29/240-math_call.patch @@ -0,0 +1,29 @@ +--- a/libc/sysdeps/linux/common/bits/mathcalls.h ++++ b/libc/sysdeps/linux/common/bits/mathcalls.h +@@ -190,20 +190,20 @@ + + /* Return 0 if VALUE is finite or NaN, +1 if it + is +Infinity, -1 if it is -Infinity. */ +-__MATHDECL_1 (int,__isinf,, (_Mdouble_ __value)) __attribute__ ((__const__)); ++__MATHDECL_1 (int,isinf,, (_Mdouble_ __value)) __attribute__ ((__const__)); + + /* Return nonzero if VALUE is finite and not NaN. */ +-__MATHDECL_1 (int,__finite,, (_Mdouble_ __value)) __attribute__ ((__const__)); +-_Mdouble_END_NAMESPACE ++__MATHDECL_1 (int,finite,, (_Mdouble_ __value)) __attribute__ ((__const__)); + +-#ifdef __USE_MISC + /* Return 0 if VALUE is finite or NaN, +1 if it + is +Infinity, -1 if it is -Infinity. */ +-__MATHDECL_1 (int,isinf,, (_Mdouble_ __value)) __attribute__ ((__const__)); ++__MATHDECL_1 (int,__isinf,, (_Mdouble_ __value)) __attribute__ ((__const__)); + + /* Return nonzero if VALUE is finite and not NaN. */ +-__MATHDECL_1 (int,finite,, (_Mdouble_ __value)) __attribute__ ((__const__)); ++__MATHDECL_1 (int,__finite,, (_Mdouble_ __value)) __attribute__ ((__const__)); ++_Mdouble_END_NAMESPACE + ++#ifdef __USE_MISC + /* Return the remainder of X/Y. */ + __MATHCALL (drem,, (_Mdouble_ __x, _Mdouble_ __y)); + |