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

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