Commit 414e1c8a authored by Alexandre Julliard's avatar Alexandre Julliard

winebuild: Avoid resolving standard C functions with static importlibs.

parent a7074ea2
......@@ -492,6 +492,8 @@ static void add_undef_import( const char *name, int is_ordinal )
while (*name >= '0' && *name <= '9') ordinal = 10 * ordinal + *name++ - '0';
if (*name++ != '$') return;
if (!use_msvcrt && find_name( name, stdc_functions )) return;
import = add_static_import_dll( dll_name );
if (is_ordinal)
add_import_func( import, NULL, xstrdup( name ), ordinal, 0 );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment