diff options
author | Szabolcs Nagy <nsz@port70.net> | 2014-01-08 22:52:26 +0100 |
---|---|---|
committer | Szabolcs Nagy <nsz@port70.net> | 2014-01-08 22:52:26 +0100 |
commit | 5f94205369a8b98ce2ce4ad2f7e2dba2da557846 (patch) | |
tree | d125eeea377b85faa45db50f28c97826a6a7b810 /src/stdio | |
parent | bcff807dc3c1f07db61dae804086b8183bf5df7b (diff) | |
download | musl-5f94205369a8b98ce2ce4ad2f7e2dba2da557846.tar.gz musl-5f94205369a8b98ce2ce4ad2f7e2dba2da557846.tar.bz2 musl-5f94205369a8b98ce2ce4ad2f7e2dba2da557846.tar.xz musl-5f94205369a8b98ce2ce4ad2f7e2dba2da557846.zip |
add __isoc99_vfscanf weak alias to vfscanf
this glibc abi compatibility function was missed when the scanf
aliases were added.
Diffstat (limited to 'src/stdio')
-rw-r--r-- | src/stdio/vfscanf.c | 2 |
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); |