X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Fgen%2Fmp.c;h=eca0b693c6d9c9842ad4ffbe3e878d675e87f5b5;hb=b35e816189efde540e299412172acf6cd987dfdd;hp=34b4f659f8cdfd034e8eff05a508978f9308505f;hpb=c58b8e7cb29f954791ffd5bc2d97ddb4d4202d0c;p=libc-test diff --git a/src/math/gen/mp.c b/src/math/gen/mp.c index 34b4f65..eca0b69 100644 --- a/src/math/gen/mp.c +++ b/src/math/gen/mp.c @@ -350,8 +350,14 @@ static int wrap_sinpi(mpfr_t my, const mpfr_t mx, mpfr_rnd_t r) int mpsinpi(struct t *t) { return mpd1(t, wrap_sinpi); } int mpadd(struct t *t) { return mpd2(t, mpfr_add); } +int mpaddf(struct t *t) { return mpf2(t, mpfr_add); } +int mpaddl(struct t *t) { return mpl2(t, mpfr_add); } int mpmul(struct t *t) { return mpd2(t, mpfr_mul); } +int mpmulf(struct t *t) { return mpf2(t, mpfr_mul); } +int mpmull(struct t *t) { return mpl2(t, mpfr_mul); } int mpdiv(struct t *t) { return mpd2(t, mpfr_div); } +int mpdivf(struct t *t) { return mpf2(t, mpfr_div); } +int mpdivl(struct t *t) { return mpl2(t, mpfr_div); } int mpacos(struct t *t) { return mpd1(t, mpfr_acos); } int mpacosf(struct t *t) { return mpf1(t, mpfr_acos); }