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

int fprintf(FILE *stream, char const *restrict format, ...)
{
	va_list arg;
	va_start(arg, format);
	int lenght = _vfprintf_wrap(stream, format, arg);
	va_end(arg);
	return lenght;
}