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

  1. #include <stdio.h>
  2. #include <stdarg.h>
  3.  
  4. int vscanf(const char *format,va_list args)
  5. {
  6.     fflush(stdout);
  7.     return vfscanf(stdin,format,args);
  8. }
  9.