mirror of
https://github.com/reactos/reactos.git
synced 2026-07-02 05:44:26 +08:00
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.
9 lines
102 B
C++
9 lines
102 B
C++
|
|
#include <internal_shared.h>
|
|
|
|
extern "C"
|
|
__crt_bool __cdecl __acrt_initialize()
|
|
{
|
|
return true;
|
|
}
|