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 / vfprintf.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-05-01  |  212 b   |  14 lines

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