Subversion Repositories Kolibri OS

Rev

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

  1. /* Copyright (C) 2021 Logaev Maxim (turbocat2001), GPLv2 */
  2.  
  3. #include <stdarg.h>
  4. #include <stdio.h>
  5. #include <stdlib.h>
  6.  
  7. //#include "format_print.h"
  8.  
  9. int printf(const char *format, ...)
  10. {
  11.   va_list arg;
  12.   va_start(arg, format);
  13.   return vprintf(format, arg);
  14. }
  15.