summaryrefslogtreecommitdiff
path: root/src/util.cc
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/util.cc
parentca47ccdc66d252e0b5791112cac4042e86cefc89 (diff)
Remove redundant "extern" on function declarations
Diffstat (limited to 'src/util.cc')
-rw-r--r--src/util.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.cc b/src/util.cc
index ce791015..f049d79c 100644
--- a/src/util.cc
+++ b/src/util.cc
@@ -2349,7 +2349,7 @@ static int complete_command(char *buf, int clen, int mlen)
}
-extern bool askfor_aux(std::string *buf, std::size_t max_len)
+bool askfor_aux(std::string *buf, std::size_t max_len)
{
// Buffer
char cstr[1024];