summaryrefslogtreecommitdiff
path: root/serve.h
diff options
context:
space:
mode:
Diffstat (limited to 'serve.h')
-rw-r--r--serve.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/serve.h b/serve.h
index fe65ba9..48b6f5e 100644
--- a/serve.h
+++ b/serve.h
@@ -2,7 +2,7 @@
#define SERVE_H
struct argv_array;
-extern int has_capability(const struct argv_array *keys, const char *capability,
+int has_capability(const struct argv_array *keys, const char *capability,
const char **value);
struct serve_options {
@@ -10,6 +10,6 @@ struct serve_options {
unsigned stateless_rpc;
};
#define SERVE_OPTIONS_INIT { 0 }
-extern void serve(struct serve_options *options);
+void serve(struct serve_options *options);
#endif /* SERVE_H */