1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 22:17:44 +00:00

LibC: Stub out swprintf

This commit is contained in:
Tim Schumacher 2021-09-22 12:54:01 +00:00 committed by Brian Gianforcaro
parent e82dc7c77a
commit c3b14588ec
2 changed files with 7 additions and 0 deletions

View file

@ -52,5 +52,6 @@ unsigned long long wcstoull(const wchar_t*, wchar_t**, int);
float wcstof(const wchar_t*, wchar_t**);
double wcstod(const wchar_t*, wchar_t**);
long double wcstold(const wchar_t*, wchar_t**);
int swprintf(wchar_t*, size_t, const wchar_t*, ...);
__END_DECLS