summaryrefslogtreecommitdiff
path: root/clear.c
blob: 2a09a2de87b9ca43ef4fe35405928411d68b3e61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "gmp.h"
#include "gmp-impl.h"
#include "mpfr.h"

void
#if __STDC__
mpfr_clear (mpfr_ptr m)
#else
mpfr_init (m)
     mpfr_ptr m;
#endif
{
  (*_mp_free_func) (m->_mp_d, ((m->_mp_prec>>3) + 1));
}