Fix a prototype.
[open-adventure.git] / misc.c
diff --git a/misc.c b/misc.c
index 8f273e9b986e8d404ffef21984787926e6f1fe2e..63cabf7c07bb340dc831790c72e6fdf43d64f2c3 100644 (file)
--- 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[] = "> ";
@@ -238,7 +238,7 @@ static char* get_input()
     return (input);
 }
 
-bool silent_yes()
+bool silent_yes(void)
 {
     bool outcome = false;