diff options
author | Ulrich Drepper <drepper@gmail.com> | 2011-10-08 10:18:26 -0400 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-10-08 10:18:26 -0400 |
commit | 7edb55ce06ab1fa716a062cd1cb6682585bb449d (patch) | |
tree | 3fed82e7c3f86ac57f3e9d6f314044b7dbdb8d03 /include/math.h | |
parent | 187da0aedcd9d0a2fb34477bef41549681ba1273 (diff) | |
download | glibc-7edb55ce06ab1fa716a062cd1cb6682585bb449d.tar glibc-7edb55ce06ab1fa716a062cd1cb6682585bb449d.tar.gz glibc-7edb55ce06ab1fa716a062cd1cb6682585bb449d.tar.bz2 glibc-7edb55ce06ab1fa716a062cd1cb6682585bb449d.zip |
Optimize use of isnan, isinf, finite
Diffstat (limited to 'include/math.h')
-rw-r--r-- | include/math.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/math.h b/include/math.h index eb29ef1a56..3934880171 100644 --- a/include/math.h +++ b/include/math.h @@ -31,4 +31,8 @@ libm_hidden_proto (__expl) libm_hidden_proto (__expm1l) # endif +extern int __isinf_ns (double); +extern int __isinf_nsf (float); +extern int __isinf_nsl (long double); + #endif |