aboutsummaryrefslogtreecommitdiffstats
path: root/test/kvx/lib/printf.c
blob: 79984ef6220037ec466233e95dfd8c64879da7f2 (plain)
1
2
3
4
5
6
7
8
9
#include <stdio.h>
#include <stdarg.h>

int __wrap_printf(const char *format, ...){
  va_list args;
  va_start(args, format);
  vprintf(format, args);
  va_end(args);
}