reactos/sdk/lib/gcc-compat/__mingw_vsprintf.c
Timo Kreuzer fcbccaa194 [GCC-COMPAT] Add support library for GCC's libsupc++ and libstdc++
__throw_out_of_range_fmt is implemented in libstdc++, but it is needed by libsupc++ and that would mean we would have to link all C++ code to libstdc++.
2024-07-09 12:01:24 +02:00

14 lines
362 B
C

/*
* PROJECT: GCC c++ support library
* LICENSE: MIT (https://spdx.org/licenses/MIT)
* PURPOSE: __mingw_vsprintf implementation
* COPYRIGHT: Copyright 2024 Timo Kreuzer <timo.kreuzer@reactos.org>
*/
#include <stdio.h>
int __cdecl __mingw_vsprintf(char* dest, const char* format, va_list arglist)
{
return vsprintf(dest, format, arglist);
}