msvcrt: Remove leftover __wine_init_unix_lib() call.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2021-08-03 16:40:06 +02:00
parent e5339ecbc6
commit 08e5080089
1 changed files with 0 additions and 3 deletions

View File

@ -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 */