mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-27 04:36:45 +08:00
7 lines
141 B
C
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);
|
||
|
}
|