summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/i386/pc386/console/outch.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/i386/pc386/console/outch.c')
-rw-r--r--c/src/lib/libbsp/i386/pc386/console/outch.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/c/src/lib/libbsp/i386/pc386/console/outch.c b/c/src/lib/libbsp/i386/pc386/console/outch.c
index ae6cb6d288..ecf08ae2ca 100644
--- a/c/src/lib/libbsp/i386/pc386/console/outch.c
+++ b/c/src/lib/libbsp/i386/pc386/console/outch.c
@@ -17,7 +17,6 @@
* $Id$
*/
-
#include <bsp.h>
#include <stdlib.h>
@@ -76,7 +75,6 @@ doCRNL(int cr, int nl)
wr_cursor(row * maxCol + column, ioCrtBaseAddr);
}
-
int (*videoHook)(char, int *)=0;
static void
@@ -101,7 +99,6 @@ gotorc(int r, int c)
/* erase current location without moving the cursor */
#define BLANK ((char)0x7f)
-
static void
videoPutChar(char car)
{
@@ -273,7 +270,6 @@ static int escaped = 0;
videoPutChar(c);
} /* _IBMPC_outch */
-
/*-------------------------------------------------------------------------+
| Function: _IBMPC_initVideo
| Description: Video system initialization. Hook for any early setup.
@@ -309,14 +305,12 @@ _IBMPC_initVideo(void)
#endif
} /* _IBMPC_initVideo */
-
/* for old DOS compatibility n-curses type of applications */
void gotoxy( int x, int y )
{
gotorc(y,x);
}
-
int whereX( void )
{
return row;