home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / bc-1.03-src.tgz / tar.out / fsf / bc / vfprintf.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  233b  |  14 lines

  1. #include <lib.h>
  2. #include <stdarg.h>
  3. #include <stdio.h>
  4.  
  5. int vfprintf(file, format, argp)
  6. FILE *file;
  7. _CONST char *format;
  8. va_list argp;
  9. {
  10.   _doprintf(file, format, argp);
  11.   if (testflag(file, PERPRINTF)) fflush(file);
  12.   return 0;
  13. }
  14.