Merge branch 'master' into master

This commit is contained in:
freedom
2023-09-06 05:08:23 -07:00
committed by GitHub
2 changed files with 17 additions and 8 deletions

View File

@@ -167,7 +167,6 @@ int WINAPI wWinMain(_In_ HINSTANCE hInstance, _In_opt_ HINSTANCE hPrevInstance,
}
#ifdef PROGMGR_NO_CRT
#pragma function(memset)
void *memset(char* dst, int value, size_t count) {
while (count--) { *dst++ = value; }
@@ -184,5 +183,4 @@ void __stdcall wWinMainCRTStartup() {
int code = wWinMain(GetModuleHandle(0), 0, 0, 0);
ExitProcess(code);
}
#endif
#endif