[CRT] Fix hack for GCC x64, when CRT is linking against RosBE libstdc++

This commit is contained in:
Hervé Poussineau 2021-01-05 18:33:52 +01:00
parent a4a0626f83
commit 80b1b0b294

View file

@ -19,6 +19,10 @@ FILE * CDECL __acrt_iob_func(int index)
return &__iob_func()[index];
}
#ifdef WIN64
const void* __imp___acrt_iob_func = __acrt_iob_func;
#else
const void* _imp____acrt_iob_func = __acrt_iob_func;
#endif
#endif