From bc1e43ea95b9455cdccee442db77bc5fafd3dcc6 Mon Sep 17 00:00:00 2001 From: David Monniaux Date: Tue, 26 May 2020 22:11:32 +0200 Subject: tests for kvx --- test/kvx/lib/printf.c | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 test/kvx/lib/printf.c (limited to 'test/kvx/lib/printf.c') diff --git a/test/kvx/lib/printf.c b/test/kvx/lib/printf.c new file mode 100644 index 00000000..79984ef6 --- /dev/null +++ b/test/kvx/lib/printf.c @@ -0,0 +1,9 @@ +#include +#include + +int __wrap_printf(const char *format, ...){ + va_list args; + va_start(args, format); + vprintf(format, args); + va_end(args); +} -- cgit