Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
stdio
vprintf.c
pretty
plain
permalink
blame
history
•
6 lines
•
109 B
1
#include <stdio.h>
2
3
int vprintf(const char *restrict fmt, va_list ap)
4
{
5
	return vfprintf(stdout, fmt, ap);
6
}