mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 03:49:00 +08:00
1a6d0f5611
* [mprf] create printf * Update CMakeLists.txt * [mpfr:portile] copy file
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);
|
|
}
|