summaryrefslogtreecommitdiff
path: root/src/rem1.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/rem1.c')
-rw-r--r--src/rem1.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/rem1.c b/src/rem1.c
index a3f91f0e4..f49f167bd 100644
--- a/src/rem1.c
+++ b/src/rem1.c
@@ -227,3 +227,10 @@ mpfr_fmod (mpfr_ptr rem, mpfr_srcptr x, mpfr_srcptr y, mpfr_rnd_t rnd)
{
return mpfr_rem1 (rem, (long *) 0, MPFR_RNDZ, x, y, rnd);
}
+
+int
+mpfr_fmodquo (mpfr_ptr rem, long *quo, mpfr_srcptr x, mpfr_srcptr y,
+ mpfr_rnd_t rnd)
+{
+ return mpfr_rem1 (rem, quo, MPFR_RNDZ, x, y, rnd);
+}