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