aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/libc/stdio/printf.c
blob: 3951250b561e812b0f7161c9f40fb07f5e60f36c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#include <stdarg.h>
#include <stdio.h>

void printf(char *fmt, ...)
{
	va_list args;
	va_start(args, fmt);
	vprintf(fmt, args);
	va_end(args);
}