aboutsummaryrefslogtreecommitdiffstats
path: root/io/printf.c
blob: da4036df924b3e24d77db39b1cc3d30f4b683fb9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#include "io.h"

int printf(char const *restrict format, ...)
{
	va_list arg;
	va_start(arg, format);
	int lenght = vprintf(format, arg);
	va_end(arg);
	return lenght;
}