diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2024-12-04 15:47:06 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2024-12-04 15:47:06 +0100 |
| commit | 6a7997b41eccd62c9743b52e80033a586aebd006 (patch) | |
| tree | db25e56e601f64871ba5b87874fb66a9f44d2930 /src/wrapped | |
| parent | 2a9d863131229119c7882385e670c488aa88f342 (diff) | |
| download | box64-6a7997b41eccd62c9743b52e80033a586aebd006.tar.gz box64-6a7997b41eccd62c9743b52e80033a586aebd006.zip | |
[BOX32] Fix mystake on previous commit
Diffstat (limited to 'src/wrapped')
| -rw-r--r-- | src/wrapped/wrappedlibc.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/wrapped/wrappedlibc.c b/src/wrapped/wrappedlibc.c index ae0cd0fa..f307a0b9 100644 --- a/src/wrapped/wrappedlibc.c +++ b/src/wrapped/wrappedlibc.c @@ -2154,12 +2154,6 @@ EXPORT int32_t my_nftw(x64emu_t* emu, void* pathname, void* B, int32_t nopenfd, } #endif -EXPORT void* my32_ldiv(x64emu_t* emu, void* p, int32_t num, int32_t den) -{ - *((div_t*)p) = div(num, den); - return p; -} - #ifndef NOALIGN EXPORT int32_t my_epoll_ctl(x64emu_t* emu, int32_t epfd, int32_t op, int32_t fd, void* event) { |