Subversion Repositories Kolibri OS

Rev

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

  1. /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
  2. #include <stdio.h>
  3. #include <stdarg.h>
  4. #include <libc/file.h>
  5.  
  6. int
  7. scanf(const char *fmt, ...)
  8. {
  9.   int r;
  10.   va_list a=0;
  11.   va_start(a, fmt);
  12.   r = _doscan(stdin, fmt, a);
  13.   va_end(a);
  14.   return r;
  15. }
  16.