home *** CD-ROM | disk | FTP | other *** search
/ Aminet 10 / aminetcdnumber101996.iso / Aminet / dev / c / vbcc.lha / vbcc / machines / amiga68k / libsrc / stdio / vprintf.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-09-11  |  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.