Address GitLab issue #34: static char* get_input() is not a prototype

This commit is contained in:
Eric S. Raymond 2017-07-20 22:04:01 -04:00
parent 609159ad6d
commit 6718c57d49

2
misc.c
View file

@ -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[] = "> ";