• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include <stdio.h>
2 
vprintf(const char * restrict fmt,va_list ap)3 int vprintf(const char *restrict fmt, va_list ap)
4 {
5 	return vfprintf(stdout, fmt, ap);
6 }
7