From ea807eda045be675301cea084e311bc4feae17f0 Mon Sep 17 00:00:00 2001 From: rajdakin Date: Sun, 1 Sep 2024 19:06:03 +0200 Subject: [WRAPPED] Merged types D/K and Y/y in 64bits wrapped libs (#1784) * [WRAPPED] Merged types D/K and Y/y in 64bits wrapped libs * [WRAPPERS] Version bump * [WRAPPED] Fixed wrapped glib2 on non-LD80BITS builds --- src/wrapped/wrappedlibm.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/wrapped/wrappedlibm.c') diff --git a/src/wrapped/wrappedlibm.c b/src/wrapped/wrappedlibm.c index f1941cc4..15b4028c 100644 --- a/src/wrapped/wrappedlibm.c +++ b/src/wrapped/wrappedlibm.c @@ -191,6 +191,14 @@ EXPORT double my_llrintl(x64emu_t* emu, double val) } return llrint(val); } +EXPORT double my_nexttoward(x64emu_t* emu, double val, double to) +{ + return nexttoward(val, to); +} +EXPORT float my_nexttowardf(x64emu_t* emu, float val, double to) +{ + return nexttowardf(val, to); +} #endif #ifdef ANDROID -- cgit 1.4.1