projects
/
oweals
/
musl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bcff807
)
add __isoc99_vfscanf weak alias to vfscanf
author
Szabolcs Nagy
<nsz@port70.net>
Wed, 8 Jan 2014 21:52:26 +0000
(22:52 +0100)
committer
Szabolcs Nagy
<nsz@port70.net>
Wed, 8 Jan 2014 21:52:26 +0000
(22:52 +0100)
this glibc abi compatibility function was missed when the scanf
aliases were added.
src/stdio/vfscanf.c
patch
|
blob
|
history
diff --git
a/src/stdio/vfscanf.c
b/src/stdio/vfscanf.c
index 0091a8d49188ff44cfc22ca1a5e2c8a8fc6fbeb1..d4d2454b08417de91621a40939c1970f9e42950a 100644
(file)
--- 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);