home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / D / GDB / GDB-4.13 / GDB-4 / gdb-4.13 / libiberty / vprintf.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-11-04  |  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.