summaryrefslogtreecommitdiffstats
path: root/libc-top-half/musl/src/stdio/vdprintf.c
blob: cef0a1af29e9cd867d579fe32c657ae4d6193ed8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "stdio_impl.h"

int vdprintf(int fd, const char *restrict fmt, va_list ap)
{
	FILE f = {
		.fd = fd, .lbf = EOF, .write = __stdio_write,
		.buf = (void *)fmt, .buf_size = 0,
#if defined(__wasilibc_unmodified_upstream) || defined(_REENTRANT)
		.lock = -1
#endif
	};
	return vfprintf(&f, fmt, ap);
}