home *** CD-ROM | disk | FTP | other *** search
/ Aminet 6 / Aminet 6 - June 1995.iso / Aminet / dev / gcc / libnixV0_8.lha / gnu / libnix-sources.lha / sources / nix / stdio / vscanf.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-02-14  |  123 b   |  6 lines

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