Skip to content

Commit 7a764cf

Browse files
committed
[UCRT] Fix invalid storage type specification
1 parent 4de4349 commit 7a764cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdk/lib/ucrt/locale/setlocale.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#include <locale.h>
1313
#include <stdlib.h>
1414

15-
extern "C" static wchar_t* __cdecl call_wsetlocale(int const category, char const* const narrow_locale)
15+
static wchar_t* __cdecl call_wsetlocale(int const category, char const* const narrow_locale)
1616
{
1717
if (narrow_locale == nullptr)
1818
return _wsetlocale(category, nullptr);

0 commit comments

Comments
 (0)