source: trunk/src/binutils/libiberty/vprintf.c@ 462

Last change on this file since 462 was 10, checked in by bird, 22 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 237 bytes
Line 
1#ifdef __STDC__
2#include <stdarg.h>
3#else
4#include <varargs.h>
5#endif
6#include <stdio.h>
7#include <ansidecl.h>
8#undef vprintf
9int
10vprintf (format, ap)
11 const char *format;
12 va_list ap;
13{
14 return vfprintf (stdout, format, ap);
15}
Note: See TracBrowser for help on using the repository browser.