Subversion Repositories Kolibri OS

Rev

Rev 8687 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1.  
  2. #include "sys/ksys.h"
  3. #include <stdio.h>
  4. #include <stdarg.h>
  5.  
  6. int fprintf(FILE *restrict f, const char *restrict fmt, ...)
  7. {
  8.         int ret;
  9.         va_list ap;
  10.         va_start(ap, fmt);
  11.         ret = vfprintf(f, fmt, ap);
  12.         va_end(ap);
  13.         return ret;
  14. }