about summary refs log tree commit diff
path: root/src/stdio/fscanf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdio/fscanf.c')
-rw-r--r--src/stdio/fscanf.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/stdio/fscanf.c b/src/stdio/fscanf.c
index ff6c7767..58bc5fab 100644
--- a/src/stdio/fscanf.c
+++ b/src/stdio/fscanf.c
@@ -1,5 +1,6 @@
 #include <stdio.h>
 #include <stdarg.h>
+#include "libc.h"
 
 int fscanf(FILE *restrict f, const char *restrict fmt, ...)
 {
@@ -10,3 +11,5 @@ int fscanf(FILE *restrict f, const char *restrict fmt, ...)
 	va_end(ap);
 	return ret;
 }
+
+weak_alias(__isoc99_fscanf);