vcpkg/ports/mpfr/test_stdarg.c
ing. Federico Fuga a2c846338c Update mpfr to 4.0.1 and fix compilation under gcc 7
gcc 7 deprecates the use of varargs.h in favour of stdarg.h.
mpfr already fixes it, but the fix is enabled if stdarg is available.
This patch adds the test on CMakeLists.txt and enables the fix if
needed.
2018-12-13 11:59:19 +01:00

7 lines
72 B
C

# include <stdarg.h>
int main(int argc, char *argv) {
return 0;
}