From 5c5ac810c31a77dd17b95bb93e13487a3c1c1433 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sat, 6 Apr 2013 17:15:58 -0400 Subject: [PATCH] fix argument omission in ABI-compat weak_alias for fscanf --- src/stdio/fscanf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stdio/fscanf.c b/src/stdio/fscanf.c index 58bc5fab..acb8a106 100644 --- a/src/stdio/fscanf.c +++ b/src/stdio/fscanf.c @@ -12,4 +12,4 @@ int fscanf(FILE *restrict f, const char *restrict fmt, ...) return ret; } -weak_alias(__isoc99_fscanf); +weak_alias(fscanf, __isoc99_fscanf); -- 2.20.1