summaryrefslogtreecommitdiff
path: root/com32/lib/fprintf.c
blob: df3823eac3e9c6ebcacb6fc0d7264991141568af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * fprintf.c
 */

#include <stdio.h>
#include <stdarg.h>

#define BUFFER_SIZE	16384

int fprintf(FILE *file, const char *format, ...)
{
  va_list ap;
  int rv;

  va_start(ap, format);
  rv = vfprintf(file, format, ap);
  va_end(ap);
  return rv;
}