https://git.reactos.org/?p=reactos.git;a=commitdiff;h=fea0f9243dd09e2237af7810ff4dd8d6ebc7e1f3
commit fea0f9243dd09e2237af7810ff4dd8d6ebc7e1f3 Author: Timo Kreuzer <timo.kreu...@reactos.org> AuthorDate: Mon Oct 21 17:35:07 2024 +0300 Commit: Timo Kreuzer <timo.kreu...@reactos.org> CommitDate: Wed Jan 22 18:56:08 2025 +0200 [UCRT] Remove __inline from conversion functions Otherwise no actual symbols will be created. --- sdk/lib/ucrt/convert/_wctype.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/sdk/lib/ucrt/convert/_wctype.cpp b/sdk/lib/ucrt/convert/_wctype.cpp index e1a64516a5b..aee7fa72500 100644 --- a/sdk/lib/ucrt/convert/_wctype.cpp +++ b/sdk/lib/ucrt/convert/_wctype.cpp @@ -12,6 +12,7 @@ #include <ctype.h> #include <locale.h> +#define __inline extern "C" __inline int (__cdecl _isleadbyte_l)(int const c, _locale_t const locale)