[UCRT] Add missing line breaks at end of file

This commit is contained in:
Timo Kreuzer 2024-10-12 08:38:25 +02:00
parent 995e16d4d4
commit 48d8d198b2
9 changed files with 9 additions and 8 deletions

View file

@ -118,4 +118,4 @@ const IMAGE_ENCLAVE_CONFIG __enclave_config = {
#endif #endif
} // extern "C" } // extern "C"

View file

@ -0,0 +1 @@

View file

@ -179,4 +179,4 @@ extern "C" windowing_model_policy __cdecl __acrt_get_windowing_model_policy()
}; };
return get_cached_win_policy<windowing_model_policy_properties>(AppPolicyWindowingModel_ClassicDesktop); return get_cached_win_policy<windowing_model_policy_properties>(AppPolicyWindowingModel_ClassicDesktop);
} }

View file

@ -601,4 +601,4 @@ extern "C" int __cdecl __acrt_DownlevelLCIDToLocaleName(
} }
return (int) count + 1; return (int) count + 1;
} }

View file

@ -36,4 +36,4 @@ extern "C" int __cdecl is_wctype (
) )
{ {
return iswctype(c, mask); return iswctype(c, mask);
} }

View file

@ -39,4 +39,4 @@ extern "C" int __cdecl fputs(char const* const string, FILE* const stream)
{ {
__crt_cached_ptd_host ptd; __crt_cached_ptd_host ptd;
return _fputs_internal(string, stream, ptd); return _fputs_internal(string, stream, ptd);
} }

View file

@ -42,4 +42,4 @@ extern "C" int __cdecl puts(char const* const string)
{ {
__crt_cached_ptd_host ptd; __crt_cached_ptd_host ptd;
return _puts_internal(string, ptd); return _puts_internal(string, ptd);
} }

View file

@ -57,4 +57,4 @@ extern "C" void __cdecl rewind(FILE* const public_stream)
{ {
__crt_cached_ptd_host ptd; __crt_cached_ptd_host ptd;
_rewind_internal(public_stream, ptd); _rewind_internal(public_stream, ptd);
} }

View file

@ -291,4 +291,4 @@ extern "C" wchar_t* __cdecl _wtempnam_dbg(
return common_tempnam(alternative, prefix, block_use, file_name, line_number); return common_tempnam(alternative, prefix, block_use, file_name, line_number);
} }
#endif #endif