add __isoc99_vfscanf weak alias to vfscanf
authorSzabolcs Nagy <nsz@port70.net>
Wed, 8 Jan 2014 21:52:26 +0000 (22:52 +0100)
committerSzabolcs 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

index 0091a8d..d4d2454 100644 (file)
@@ -328,3 +328,5 @@ match_fail:
        FUNLOCK(f);
        return matches;
 }
+
+weak_alias(vfscanf,__isoc99_vfscanf);