diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2024-11-29 10:27:23 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2024-11-29 10:27:23 +0100 |
| commit | 12a82cf91f5ea89bcdc69c6aaa541f10ee948772 (patch) | |
| tree | 9caaa714e2c2fbc0e49ad1ad5b3311404c94a372 /src/wrapped/wrappedlibc.c | |
| parent | 5af2fa49c334c373c296c56dda086471aa48b921 (diff) | |
| download | box64-12a82cf91f5ea89bcdc69c6aaa541f10ee948772.tar.gz box64-12a82cf91f5ea89bcdc69c6aaa541f10ee948772.zip | |
[WRAPPER] Added back faked ITM weak functions
Diffstat (limited to 'src/wrapped/wrappedlibc.c')
| -rw-r--r-- | src/wrapped/wrappedlibc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wrapped/wrappedlibc.c b/src/wrapped/wrappedlibc.c index b30eea61..0847ff3c 100644 --- a/src/wrapped/wrappedlibc.c +++ b/src/wrapped/wrappedlibc.c @@ -662,6 +662,7 @@ int of_unconvert(int a) #undef SUPER EXPORT void* my__ZGTtnaX (size_t a) { (void)a; printf("warning _ZGTtnaX called\n"); return NULL; } +EXPORT void* my__ZGTtnam (size_t a) { (void)a; printf("warning _ZGTtnam called\n"); return NULL; } EXPORT void my__ZGTtdlPv (void* a) { (void)a; printf("warning _ZGTtdlPv called\n"); } EXPORT uint8_t my__ITM_RU1(const uint8_t * a) { (void)a; printf("warning _ITM_RU1 called\n"); return 0; } EXPORT uint32_t my__ITM_RU4(const uint32_t * a) { (void)a; printf("warning _ITM_RU4 called\n"); return 0; } |