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

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