home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / gnu / src / amiga / libnix-0.7-src.lha / libnix-0.7 / sources / nix / stdio / vscanf.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-12-12  |  124 b   |  6 lines

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