From 6718c57d49c8b6f86a3eab2e23d2265aab98d31c Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Thu, 20 Jul 2017 22:04:01 -0400 Subject: [PATCH] Address GitLab issue #34: static char* get_input() is not a prototype --- misc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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[] = "> "; -- 2.31.1