summaryrefslogtreecommitdiff
path: root/gpxe/src/hci/mucurses/wininit.c
diff options
context:
space:
mode:
Diffstat (limited to 'gpxe/src/hci/mucurses/wininit.c')
-rw-r--r--gpxe/src/hci/mucurses/wininit.c37
1 files changed, 0 insertions, 37 deletions
diff --git a/gpxe/src/hci/mucurses/wininit.c b/gpxe/src/hci/mucurses/wininit.c
deleted file mode 100644
index 782e7b5c..00000000
--- a/gpxe/src/hci/mucurses/wininit.c
+++ /dev/null
@@ -1,37 +0,0 @@
-#include <stddef.h>
-#include <curses.h>
-
-/** @file
- *
- * MuCurses initialisation functions
- *
- */
-
-FILE_LICENCE ( GPL2_OR_LATER );
-
-/**
- * Initialise console environment
- *
- * @ret *win return pointer to stdscr
- */
-WINDOW *initscr ( void ) {
- /* determine console size */
- /* initialise screen */
- stdscr->scr->init( stdscr->scr );
- stdscr->height = LINES;
- stdscr->width = COLS;
- move ( 0, 0 );
- return stdscr;
-}
-
-/**
- * Finalise console environment
- *
- */
-int endwin ( void ) {
- attrset ( 0 );
- color_set ( 0, NULL );
- mvprintw ( ( LINES - 1 ), 0, "\n" );
- stdscr->scr->exit( stdscr->scr );
- return OK;
-}