mirror of
https://github.com/reactos/reactos.git
synced 2025-02-21 16:04:57 +00:00
[CRT] Fix hack for GCC x64, when CRT is linking against RosBE libstdc++
This commit is contained in:
parent
a4a0626f83
commit
80b1b0b294
1 changed files with 4 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue