File: try_dec64.in

package info (click to toggle)
libmath-mpfr-perl 4.38-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 1,652 kB
  • sloc: perl: 1,363; ansic: 517; makefile: 9
file content (11 lines) | stat: -rwxr-xr-x 192 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11

#include <stdio.h>
#include <gmp.h>
#include <mpfr.h>

int main(void) {
 if(mpfr_buildopt_decimal_p())
   printf("42");
 else printf("mpfr_buildopt_decimal_p() returned false");
 return 0;
}