[CRT][UCRTBASE] Add round/roundf

This commit is contained in:
Timo Kreuzer 2025-04-16 18:28:42 +03:00
parent d736b55644
commit 5c6912f561
2 changed files with 4 additions and 2 deletions

View file

@ -2547,8 +2547,8 @@
@ cdecl -stub rint(double)
@ cdecl -stub rintf(float)
@ cdecl rintl(double) rint
@ cdecl -stub round(double)
@ cdecl -stub roundf(float)
@ cdecl round(double)
@ cdecl roundf(float)
@ cdecl roundl(double) round
@ cdecl scalbln(double long) scalbn # double scalbln(double x, long exp);
@ cdecl scalblnf(float long) scalbnf # float scalblnf(float x, long exp);

View file

@ -8,6 +8,8 @@ list(APPEND LIBCNTPR_MATH_SOURCE
math/div.c
math/exp2f.c
math/labs.c
math/round.c
math/roundf.c
math/sincos.c
)