vdprintf.c raw

   1  #include "stdio_impl.h"
   2  
   3  int vdprintf(int fd, const char *restrict fmt, va_list ap)
   4  {
   5  	FILE f = {
   6  		.fd = fd, .lbf = EOF, .write = __stdio_write,
   7  		.buf = (void *)fmt, .buf_size = 0,
   8  		.lock = -1
   9  	};
  10  	return vfprintf(&f, fmt, ap);
  11  }
  12