From: Szabolcs Nagy Date: Wed, 8 Jan 2014 21:52:26 +0000 (+0100) Subject: add __isoc99_vfscanf weak alias to vfscanf X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;ds=sidebyside;h=5f94205369a8b98ce2ce4ad2f7e2dba2da557846;p=musl add __isoc99_vfscanf weak alias to vfscanf this glibc abi compatibility function was missed when the scanf aliases were added. --- diff --git a/src/stdio/vfscanf.c b/src/stdio/vfscanf.c index 0091a8d4..d4d2454b 100644 --- a/src/stdio/vfscanf.c +++ b/src/stdio/vfscanf.c @@ -328,3 +328,5 @@ match_fail: FUNLOCK(f); return matches; } + +weak_alias(vfscanf,__isoc99_vfscanf);