summaryrefslogtreecommitdiff
path: root/src/stdio/vdprintf.c
blob: bfb1b0a9d8c4a3c566dd7e5a97c44ea0b8e05d84 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "stdio_impl.h"

int vdprintf(int fd, const char *fmt, va_list ap)
{
	int r;
	char buf[BUFSIZ];
	FILE f = {
		.fd = fd, .lbf = EOF, .write = __stdio_write,
		.buf = buf+UNGET, .buf_size = sizeof buf - UNGET
	};
	r = vfprintf(&f, fmt, ap);
	__oflow(&f);
	return r;
}