Adding upstream version 6.03~pre1+dfsg.
[syslinux-debian/hramrach.git] / com32 / lib / printf.c
blob86c2b767cf20eff4064373f580abdb50f9ac341c
1 /*
2 * printf.c
3 */
5 #include <stdio.h>
6 #include <stdarg.h>
8 int printf(const char *format, ...)
10 va_list ap;
11 int rv;
13 va_start(ap, format);
14 rv = vfprintf(stdout, format, ap);
15 va_end(ap);
16 return rv;