home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / vbcc / machines / amiga68k / libsrc / stdio / vprintf.c < prev    next >
Encoding:
C/C++ Source or Header  |  1998-06-24  |  168 b   |  12 lines

  1. #include <stdio.h>
  2. #include <stdarg.h>
  3.  
  4. int vprintf(const char *format,va_list vl)
  5. {
  6.     int n;
  7.     n=vfprintf(stdout,format,vl);
  8.     fflush(stdout);
  9.     return(n);
  10. }
  11.  
  12.