summaryrefslogtreecommitdiff
path: root/libiberty/vprintf.c
blob: 65b425a4d6b2c977355b296a7bb4205cb3295798 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifdef __STDC__
#include <stdarg.h>
#else
#include <varargs.h>
#endif
#include <stdio.h>
#include <ansidecl.h>
#undef vprintf
int
vprintf (format, ap)
     const char *format;
     va_list ap;
{
  return vfprintf (stdout, format, ap);
}