mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
fcbccaa194
__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++.
14 lines
362 B
C
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);
|
|
}
|