musl/src/stdio/vdprintf.c

17 lines
334 B
C
Raw Normal View History

2011-02-12 00:22:29 -05:00
#include "stdio_impl.h"
static size_t wrap_write(FILE *f, const unsigned char *buf, size_t len)
{
return __stdio_write(f, buf, len);
}
2011-02-12 00:22:29 -05:00
int vdprintf(int fd, const char *fmt, va_list ap)
{
FILE f = {
.fd = fd, .lbf = EOF, .write = wrap_write,
.buf = (void *)fmt, .buf_size = 0,
.lock = -1
2011-02-12 00:22:29 -05:00
};
return vfprintf(&f, fmt, ap);
2011-02-12 00:22:29 -05:00
}