vcpkg/ports/mpfr/gmp_printf.c
xoviat 1a6d0f5611 [mprf] add missing symbol (#2226)
* [mprf] create printf

* Update CMakeLists.txt

* [mpfr:portile] copy file
2017-11-20 15:10:00 -08:00

7 lines
141 B
C

#include <stdio.h>
#include <stdarg.h>
extern int __gmpfr_fprintf(const char *fmt, va_list argp) {
return fprintf(stderr, fmt, argp);
}