Adding upstream version 3.35.
[syslinux-debian/hramrach.git] / com32 / lib / printf.c
blob34237592d68f95bae11f3bfc933890e5c0efbd64
1 /*
2 * printf.c
3 */
5 #include <stdio.h>
6 #include <stdarg.h>
8 #define BUFFER_SIZE 16384
10 int printf(const char *format, ...)
12 va_list ap;
13 int rv;
15 va_start(ap, format);
16 rv = vfprintf(stdout, format, ap);
17 va_end(ap);
18 return rv;