From b2cb8d6fb456f3bfe39d746b79a0fbede94f5666 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Mon, 4 Jun 2012 15:26:12 +0200 Subject: libcsupport: Add rtems_printf_plugin() --- cpukit/libcsupport/src/printf_plugin.c | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 cpukit/libcsupport/src/printf_plugin.c (limited to 'cpukit/libcsupport/src/printf_plugin.c') diff --git a/cpukit/libcsupport/src/printf_plugin.c b/cpukit/libcsupport/src/printf_plugin.c new file mode 100644 index 0000000000..87913277f9 --- /dev/null +++ b/cpukit/libcsupport/src/printf_plugin.c @@ -0,0 +1,33 @@ +/* + * Copyright (c) 2012 embedded brains GmbH. All rights reserved. + * + * embedded brains GmbH + * Obere Lagerstr. 30 + * 82178 Puchheim + * Germany + * + * + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or at + * http://www.rtems.com/license/LICENSE. + */ + +#ifdef HAVE_CONFIG_H + #include "config.h" +#endif + +#include + +#include + +int rtems_printf_plugin(void *context, const char *format, ...) +{ + int rv; + va_list ap; + + va_start(ap, format); + rv = vprintf(format, ap); + va_end(ap); + + return rv; +} -- cgit v1.2.3