Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. /* Copyright (C) 1998 DJ Delorie, see COPYING.DJ for details */
  2. #include <stdio.h>
  3. #include <stdarg.h>
  4.  
  5. int
  6. vscanf(const char *fmt, va_list ap)
  7. {
  8.   return _doscan(stdin, fmt, ap);
  9. }
  10.