diff options
author | pelissip <pelissip@280ebfd0-de03-0410-8827-d642c229c3f4> | 2005-02-02 15:49:20 +0000 |
---|---|---|
committer | pelissip <pelissip@280ebfd0-de03-0410-8827-d642c229c3f4> | 2005-02-02 15:49:20 +0000 |
commit | fbc75c559af1634febeef27721ac6aeb8a745f25 (patch) | |
tree | 7b33c8b75e1ecc43a60b56b4f0e532a2a2e83f14 /next.c | |
parent | 8137dfda0fbd4c5d8784a7f2ccd6c1ac142e3898 (diff) | |
download | mpfr-fbc75c559af1634febeef27721ac6aeb8a745f25.tar.gz |
Move mpfr_nexttozero and mpfr_nexttoinf from static to mpfr-impl.
Use them in sub1 and sin.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@3260 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'next.c')
-rw-r--r-- | next.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -23,7 +23,7 @@ MA 02111-1307, USA. */ #include "mpfr-impl.h" -static void +void mpfr_nexttozero (mpfr_ptr x) { if (MPFR_UNLIKELY(MPFR_IS_INF(x))) @@ -64,7 +64,7 @@ mpfr_nexttozero (mpfr_ptr x) } } -static void +void mpfr_nexttoinf (mpfr_ptr x) { if (MPFR_UNLIKELY(MPFR_IS_INF(x))) |