home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 March / PCWK3A99.iso / Linux / DDD331 / DDD-3_1_.000 / DDD-3_1_ / ddd-3.1.1 / libiberty / vprintf.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-12-15  |  237 b   |  16 lines

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