summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/shared/dummy_printk_support.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/shared/dummy_printk_support.c')
-rw-r--r--c/src/lib/libbsp/shared/dummy_printk_support.c31
1 files changed, 0 insertions, 31 deletions
diff --git a/c/src/lib/libbsp/shared/dummy_printk_support.c b/c/src/lib/libbsp/shared/dummy_printk_support.c
deleted file mode 100644
index 8273edb83a..0000000000
--- a/c/src/lib/libbsp/shared/dummy_printk_support.c
+++ /dev/null
@@ -1,31 +0,0 @@
-/**
- * @file
- * @brief Stub printk() support
- *
- * This file contains a stub for the required printk() support.
- * It is NOT functional!!!
- */
-
-/*
- * COPYRIGHT (c) 1989-2014.
- * On-Line Applications Research Corporation (OAR).
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.org/license/LICENSE.
- */
-
-/*
- * To support printk
- */
-
-#include <rtems.h>
-#include <rtems/bspIo.h>
-
-static void BSP_output_char_f(char c)
-{
- /* the character just needs to disappear */
-}
-
-BSP_output_char_function_type BSP_output_char = BSP_output_char_f;
-BSP_polling_getchar_function_type BSP_poll_char = NULL;