aboutsummaryrefslogtreecommitdiff
path: root/src/stdio/dprintf.c
blob: 351aeae9560f8754f6bdf9272fa149f53767e22b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <stdio.h>
#include <stdarg.h>

int dprintf(int fd, const char *restrict fmt, ...)
{
	int ret;
	va_list ap;
	va_start(ap, fmt);
	ret = vdprintf(fd, fmt, ap);
	va_end(ap);
	return ret;
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif