Alexandre Julliard : msvcrt: Remove leftover __wine_init_unix_lib() call.
Module: wine Branch: master Commit: 08e5080089220d6bcce0c0a33cf49e8c95ed711f URL: https://source.winehq.org/git/wine.git/?a=commit;h=08e5080089220d6bcce0c0a33... Author: Alexandre Julliard <julliard(a)winehq.org> Date: Tue Aug 3 16:40:06 2021 +0200 msvcrt: Remove leftover __wine_init_unix_lib() call. Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/msvcrt/math.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/dlls/msvcrt/math.c b/dlls/msvcrt/math.c index 124cdf80098..05eacbb36fb 100644 --- a/dlls/msvcrt/math.c +++ b/dlls/msvcrt/math.c @@ -66,8 +66,6 @@ static MSVCRT_matherr_func MSVCRT_default_matherr_func = NULL; BOOL sse2_supported; static BOOL sse2_enabled; -static const struct unix_funcs *unix_funcs; - void msvcrt_init_math( void *module ) { sse2_supported = IsProcessorFeaturePresent( PF_XMMI64_INSTRUCTIONS_AVAILABLE ); @@ -76,7 +74,6 @@ void msvcrt_init_math( void *module ) #else sse2_enabled = sse2_supported; #endif - __wine_init_unix_lib( module, DLL_PROCESS_ATTACH, NULL, &unix_funcs ); } /* Copied from musl: src/internal/libm.h */
participants (1)
-
Alexandre Julliard