From: Art Cancro Date: Thu, 2 Sep 2010 01:08:21 +0000 (-0400) Subject: removed unused stubs from screen.c X-Git-Tag: v8.01~774 X-Git-Url: https://code.citadel.org/?a=commitdiff_plain;h=0e718c0f851ef9899b07d6faff6b8da7cf0145b4;p=citadel.git removed unused stubs from screen.c --- diff --git a/citadel/textclient/screen.c b/citadel/textclient/screen.c index dc925c12e..44fa8dfa6 100644 --- a/citadel/textclient/screen.c +++ b/citadel/textclient/screen.c @@ -48,10 +48,11 @@ void screen_new(void) */ void screen_delete(void) { - windows_delete(); screen_reset(); } + + /* * Beep. */ @@ -216,19 +217,3 @@ RETSIGTYPE scr_winch(int signum) check_screen_dims(); signal(SIGWINCH, scr_winch); } - - -/* - * Initialize the window(s) we will be using. - */ -void windows_new(void) -{ -} - - -/* - * Deinitialize the window(s) we were using (at exit). - */ -void windows_delete(void) -{ -}