summaryrefslogtreecommitdiff
path: root/next.c
diff options
context:
space:
mode:
authorpelissip <pelissip@280ebfd0-de03-0410-8827-d642c229c3f4>2005-02-02 15:49:20 +0000
committerpelissip <pelissip@280ebfd0-de03-0410-8827-d642c229c3f4>2005-02-02 15:49:20 +0000
commitfbc75c559af1634febeef27721ac6aeb8a745f25 (patch)
tree7b33c8b75e1ecc43a60b56b4f0e532a2a2e83f14 /next.c
parent8137dfda0fbd4c5d8784a7f2ccd6c1ac142e3898 (diff)
downloadmpfr-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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/next.c b/next.c
index 97a217c1c..68f2190cc 100644
--- a/next.c
+++ b/next.c
@@ -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)))