beta-0.89.2
[luatex.git] / source / libs / gmp / gmptest.c
bloba0f3afe6c290018c0547273777345e0b42c0ee15
1 /* gmptst.c: Basic test for libgmp
3 * Copyright (C) 2014 Peter Breitenlohner <tex-live@tug.org>
4 * You may freely use, modify and/or distribute this file.
5 */
7 #include <stdio.h>
8 #include <gmp.h>
10 int main (int argc, char **argv)
12 printf ("%s: Compiled with gmp version %d.%d.%d; using %s\n",
13 argv[0], __GNU_MP_VERSION, __GNU_MP_VERSION_MINOR, __GNU_MP_VERSION_PATCHLEVEL,
14 gmp_version);
15 return 0;