terminal: remove unused return value

This commit is contained in:
wm4 2017-06-27 17:38:49 +02:00
parent 5cd7b1c8a6
commit dd87ce6f4b
3 changed files with 3 additions and 6 deletions

View File

@ -474,7 +474,7 @@ void terminal_get_size(int *w, int *h)
*h = ws.ws_row;
}
int terminal_init(void)
void terminal_init(void)
{
assert(!getch2_enabled);
getch2_enabled = 1;
@ -486,6 +486,4 @@ int terminal_init(void)
setsigaction(SIGTTOU, SIG_IGN, 0, true);
getch2_poll();
return 0;
}

View File

@ -285,7 +285,7 @@ bool terminal_try_attach(void)
return true;
}
int terminal_init(void)
void terminal_init(void)
{
CONSOLE_SCREEN_BUFFER_INFO cinfo;
DWORD cmode = 0;
@ -295,5 +295,4 @@ int terminal_init(void)
SetConsoleMode(hSTDERR, cmode);
GetConsoleScreenBufferInfo(hSTDOUT, &cinfo);
stdoutAttrs = cinfo.wAttributes;
return 0;
}

View File

@ -26,7 +26,7 @@
struct input_ctx;
/* Global initialization for terminal output. */
int terminal_init(void);
void terminal_init(void);
/* Setup ictx to read keys from the terminal */
void terminal_setup_getch(struct input_ctx *ictx);