summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSzabolcs Nagy <nsz@port70.net>2014-01-08 22:52:26 +0100
committerSzabolcs Nagy <nsz@port70.net>2014-01-08 22:52:26 +0100
commit5f94205369a8b98ce2ce4ad2f7e2dba2da557846 (patch)
treed125eeea377b85faa45db50f28c97826a6a7b810 /src
parentbcff807dc3c1f07db61dae804086b8183bf5df7b (diff)
downloadmusl-5f94205369a8b98ce2ce4ad2f7e2dba2da557846.tar.gz
add __isoc99_vfscanf weak alias to vfscanf
this glibc abi compatibility function was missed when the scanf aliases were added.
Diffstat (limited to 'src')
-rw-r--r--src/stdio/vfscanf.c2
1 files changed, 2 insertions, 0 deletions
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);