Files
reactos/sdk/lib/vcstartup/__acrt_initialize_stub.cpp
Timo Kreuzer d0b292cda6 [VCSTARTUP] Separate the library from vcruntime
Previously this was mixed with vcruntime, with some objects being shared. But this is messy. Instead use a separate library and link ucrtbase to this as well. This also matches more closely how native libraries are organized, where vcstartup is merged into the CRT import libraries, while vcruntime is merged into the static CRT libraries.
2026-06-21 12:30:32 +00:00

9 lines
102 B
C++

#include <internal_shared.h>
extern "C"
__crt_bool __cdecl __acrt_initialize()
{
return true;
}