summaryrefslogtreecommitdiff
path: root/src/monster1.hpp
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2017-05-02 19:20:57 +0200
committerBardur Arantsson <bardur@scientician.net>2017-05-02 19:20:57 +0200
commita40e1d524849e22edf2fb65b5c2fedbe47a59b81 (patch)
tree7b2ec44c6c361db29b72afd0d66e7f04c447097f /src/monster1.hpp
parentca47ccdc66d252e0b5791112cac4042e86cefc89 (diff)
Remove redundant "extern" on function declarations
Diffstat (limited to 'src/monster1.hpp')
-rw-r--r--src/monster1.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/monster1.hpp b/src/monster1.hpp
index 9f7128ea..34f54346 100644
--- a/src/monster1.hpp
+++ b/src/monster1.hpp
@@ -1,5 +1,5 @@
#pragma once
-extern void screen_roff(int r_idx, int ego);
-extern void display_roff(int r_idx, int ego);
-extern void monster_description_out(int r_idx, int ego);
+void screen_roff(int r_idx, int ego);
+void display_roff(int r_idx, int ego);
+void monster_description_out(int r_idx, int ego);