projects
/
oweals
/
musl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
work around constant folding bug 61144 in gcc 4.9.0 and 4.9.1
[oweals/musl.git]
/
src
/
stdio
/
vscanf.c
1
#include <stdio.h>
2
#include <stdarg.h>
3
#include "libc.h"
4
5
int vscanf(const char *restrict fmt, va_list ap)
6
{
7
return vfscanf(stdin, fmt, ap);
8
}
9
10
weak_alias(vscanf,__isoc99_vscanf);