home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 9 / FreshFishVol9-CD2.bin / bbs / gnu / gdb-4.14-src.lha / gdb-4.14 / libiberty / vprintf.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-11-05  |  188 b   |  12 lines

  1. #include <stdio.h>
  2. #include <varargs.h>
  3. #include <ansidecl.h>
  4. #undef vprintf
  5. int
  6. vprintf (format, ap)
  7.      const char *format;
  8.      va_list ap;
  9. {
  10.   return vfprintf (stdout, format, ap);
  11. }
  12.