summaryrefslogtreecommitdiff
path: root/src/gods.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/gods.hpp
parentca47ccdc66d252e0b5791112cac4042e86cefc89 (diff)
Remove redundant "extern" on function declarations
Diffstat (limited to 'src/gods.hpp')
-rw-r--r--src/gods.hpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/gods.hpp b/src/gods.hpp
index 7035dd14..2a5f2bb5 100644
--- a/src/gods.hpp
+++ b/src/gods.hpp
@@ -2,12 +2,12 @@
#include "h-basic.h"
-extern void inc_piety(int god, s32b amt);
-extern void abandon_god(int god);
-extern int wisdom_scale(int max);
-extern int find_god(cptr name);
-extern void follow_god(int god, bool_ silent);
-extern bool_ god_enabled(struct deity_type *deity);
-extern deity_type *god_at(byte god_idx);
-extern bool_ show_god_info();
-extern bool praying_to(int god);
+void inc_piety(int god, s32b amt);
+void abandon_god(int god);
+int wisdom_scale(int max);
+int find_god(cptr name);
+void follow_god(int god, bool_ silent);
+bool_ god_enabled(struct deity_type *deity);
+deity_type *god_at(byte god_idx);
+bool_ show_god_info();
+bool praying_to(int god);