summaryrefslogtreecommitdiff
path: root/lib/libc/stdio/vdprintf.c
blob: 66a041ccdc67dd805a01b55adfcc7c70e3cbc58d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <io.h>
#include <stdio.h>

int vdprintf(int fildes, const char *restrict format, va_list ap)
{
	int r;
	FILE f;
	f.fd = fildes;
	f.type = _IONBF;
	r = vfprintf(&f, format, ap);
	return r;
}