Subversion Repositories Kolibri OS

Rev

Rev 4973 | Blame | Compare with Previous | 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. printf(const char *fmt, ...)
  8. {
  9.   int len;
  10.   va_list va;
  11.   va_start(va, fmt);
  12.  
  13.   len = _doprnt(fmt, va, stdout);
  14.   va_end(va);
  15.   return ferror(stdout) ? EOF : len;
  16. }
  17.