From: Eric S. Raymond Date: Fri, 21 Jul 2017 02:04:01 +0000 (-0400) Subject: Address GitLab issue #34: static char* get_input() is not a prototype X-Git-Tag: 1.3~20 X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=commitdiff_plain;h=6718c57d49c8b6f86a3eab2e23d2265aab98d31c Address GitLab issue #34: static char* get_input() is not a prototype --- diff --git a/misc.c b/misc.c index 8f273e9..fb884b3 100644 --- a/misc.c +++ b/misc.c @@ -200,7 +200,7 @@ static int word_count(char* str) return (count); } -static char* get_input() +static char* get_input(void) { // Set up the prompt char input_prompt[] = "> ";