projects
/
oweals
/
musl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
support linux kernel apis (new archs) with old syscalls removed
[oweals/musl.git]
/
src
/
stdio
/
vprintf.c
1
#include <stdio.h>
2
3
int vprintf(const char *restrict fmt, va_list ap)
4
{
5
return vfprintf(stdout, fmt, ap);
6
}