Module: wine Branch: master Commit: c72e1b096d16a1e9a36b86fbc8c403ec3653a504 URL: https://source.winehq.org/git/wine.git/?a=commit;h=c72e1b096d16a1e9a36b86fbc...
Author: Alexandre Julliard julliard@winehq.org Date: Wed Nov 18 16:14:50 2020 +0100
msvcrt: Move math functions to a new Unix library.
Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/crtdll/Makefile.in | 1 + dlls/msvcr100/Makefile.in | 1 + dlls/msvcr110/Makefile.in | 1 + dlls/msvcr120/Makefile.in | 1 + dlls/msvcr70/Makefile.in | 1 + dlls/msvcr71/Makefile.in | 1 + dlls/msvcr80/Makefile.in | 1 + dlls/msvcr90/Makefile.in | 1 + dlls/msvcrt/Makefile.in | 1 + dlls/msvcrt/main.c | 2 +- dlls/msvcrt/math.c | 443 +++++------------- dlls/msvcrt/msvcrt.h | 2 +- dlls/msvcrt/unixlib.c | 1096 +++++++++++++++++++++++++++++++++++++++++++++ dlls/msvcrt/unixlib.h | 121 +++++ dlls/msvcrtd/Makefile.in | 1 + dlls/ucrtbase/Makefile.in | 1 + 16 files changed, 1342 insertions(+), 333 deletions(-)
Diff: https://source.winehq.org/git/wine.git/?a=commitdiff;h=c72e1b096d16a1e9a36b8...