vcpkg/ports/mpfr/gmp_printf.c

7 lines
141 B
C
Raw Normal View History

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