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