aboutsummaryrefslogtreecommitdiffstats
path: root/src/resp.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2015-11-06 23:04:22 -0500
committerDavid Robillard <d@drobilla.net>2015-11-06 23:04:22 -0500
commitf4bccc3d667726fb2c9e70f55a0e83bd8fb65e70 (patch)
tree5a51e4f340a3121772c1b5bdcae99d6d4655df63 /src/resp.cpp
parentda4c2dc337252d21d1ceea3f32c61620a5b6e4f4 (diff)
downloadresp-f4bccc3d667726fb2c9e70f55a0e83bd8fb65e70.tar.gz
resp-f4bccc3d667726fb2c9e70f55a0e83bd8fb65e70.tar.bz2
resp-f4bccc3d667726fb2c9e70f55a0e83bd8fb65e70.zip
Fix undeclared function warnings
Diffstat (limited to 'src/resp.cpp')
-rw-r--r--src/resp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/resp.cpp b/src/resp.cpp
index 704c864..7167227 100644
--- a/src/resp.cpp
+++ b/src/resp.cpp
@@ -61,7 +61,7 @@ is_primitive(const PEnv& penv, const AST* ast)
return penv.primitives.find(sym->sym()) != penv.primitives.end();
}
-int
+static int
print_usage(char* name, bool error)
{
ostream& os = error ? cerr : cout;