From 6a7997b41eccd62c9743b52e80033a586aebd006 Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Wed, 4 Dec 2024 15:47:06 +0100 Subject: [BOX32] Fix mystake on previous commit --- src/wrapped/wrappedlibc.c | 6 ------ src/wrapped32/wrappedlibc.c | 5 +++-- 2 files changed, 3 insertions(+), 8 deletions(-) (limited to 'src') 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) { diff --git a/src/wrapped32/wrappedlibc.c b/src/wrapped32/wrappedlibc.c index e696004a..5e9ccfe9 100755 --- a/src/wrapped32/wrappedlibc.c +++ b/src/wrapped32/wrappedlibc.c @@ -1563,13 +1563,14 @@ EXPORT int32_t my32_nftw(x64emu_t* emu, void* pathname, void* B, int32_t nopenfd return f(pathname, findnftwFct(B), nopenfd, flags); } +#endif EXPORT void* my32_ldiv(x64emu_t* emu, void* p, int32_t num, int32_t den) { - *((ldiv_t*)p) = ldiv(num, den); + *((div_t*)p) = div(num, den); return p; } -#endif + EXPORT int my32_epoll_create(x64emu_t* emu, int size) { return epoll_create(size); -- cgit 1.4.1