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

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