about summary refs log tree commit diff
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.c b/main.c
index 6bde0e1..e6f6cf1 100644
--- a/main.c
+++ b/main.c
@@ -2,7 +2,7 @@
 #include <SDL.h>
 
 int main(int argc, char** argv);
-void show_help();
+static void show_help();
 
 int main(int argc, char** argv)
 {
@@ -89,7 +89,7 @@ int main(int argc, char** argv)
     return 0;
 }
 
-void show_help()
+static void show_help()
 {
     printf("BAD USAGE! -> ./chip8_emulator [ROM]\n");
 }