summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/sim68000/console/debugio.c
diff options
context:
space:
mode:
authorAun-Ali Zaidi <admin@kodeit.net>2015-12-07 20:20:56 -0600
committerSebastian Huber <sebastian.huber@embedded-brains.de>2015-12-08 07:31:20 +0100
commita4e172aca7e0dd43a4c9822fe7c6afde2f22f49b (patch)
tree7969ef9c8dafec819b89f6f5c2697447fb696cda /c/src/lib/libbsp/m68k/sim68000/console/debugio.c
parentbsp/generic_or1k: Delete unused extern declaration (diff)
downloadrtems-a4e172aca7e0dd43a4c9822fe7c6afde2f22f49b.tar.bz2
m68k/sim68000: Remove
closes #2445.
Diffstat (limited to 'c/src/lib/libbsp/m68k/sim68000/console/debugio.c')
-rw-r--r--c/src/lib/libbsp/m68k/sim68000/console/debugio.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/c/src/lib/libbsp/m68k/sim68000/console/debugio.c b/c/src/lib/libbsp/m68k/sim68000/console/debugio.c
deleted file mode 100644
index c9993ceaaf..0000000000
--- a/c/src/lib/libbsp/m68k/sim68000/console/debugio.c
+++ /dev/null
@@ -1,21 +0,0 @@
-/*
- * 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.
- */
-
-#include <unistd.h> /* write */
-
-#include <bsp.h>
-#include <rtems/bspIo.h>
-
-static void debug_putc( char c )
-{
- write( 2, &c, 1 );
-}
-
-BSP_output_char_function_type BSP_output_char = debug_putc;
-BSP_polling_getchar_function_type BSP_poll_char = NULL;