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. vprintf(const char *fmt, va_list ap)
  8. {
  9.   int len;
  10.  
  11.   len = _doprnt(fmt, ap, stdout);
  12.   return (ferror(stdout) ? EOF : len);
  13. }
  14.