diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2023-10-08 09:51:21 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2023-10-08 09:51:21 +0200 |
| commit | 8a5719afe1bf613af9a2ddd66191cc101ceca1bf (patch) | |
| tree | 30ea0bf1d501150b5c11fe7dd9d00ef414f02ae9 /src/wrapped/wrappedlibc.c | |
| parent | 2ec01c9b60f5bef08ddf77a038377ceb8dfc8b26 (diff) | |
| download | box64-8a5719afe1bf613af9a2ddd66191cc101ceca1bf.tar.gz box64-8a5719afe1bf613af9a2ddd66191cc101ceca1bf.zip | |
Added __isoc99_vswscanf wrapped function (for #1015)
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 61819a7f..f3df5ad2 100644 --- a/src/wrapped/wrappedlibc.c +++ b/src/wrapped/wrappedlibc.c @@ -903,6 +903,7 @@ EXPORT int my_sscanf(x64emu_t* emu, void* stream, void* fmt, uint64_t* b) } EXPORT int my__IO_vfscanf(x64emu_t* emu, void* stream, void* fmt, void* b) __attribute__((alias("my_vfscanf"))); EXPORT int my___isoc99_vsscanf(x64emu_t* emu, void* stream, void* fmt, void* b) __attribute__((alias("my_vsscanf"))); +EXPORT int my___isoc99_vswscanf(x64emu_t* emu, void* stream, void* fmt, void* b) __attribute__((alias("my_vswscanf"))); EXPORT int my___isoc99_vfscanf(x64emu_t* emu, void* stream, void* fmt, void* b) __attribute__((alias("my_vfscanf"))); EXPORT int my___isoc99_fscanf(x64emu_t* emu, void* stream, void* fmt, uint64_t* b) |