view libc/utils/MPFRWrapper/check_mpfr.cpp @ 204:e348f3e5c8b2

ReadFromString worked.
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sat, 05 Jun 2021 15:35:13 +0900
parents 0572611fdcc8
children
line wrap: on
line source

#include <mpfr.h>

int main() {
  mpfr_t x;
  mpfr_init(x);
  mpfr_clear(x);
  return 0;
}