aboutsummaryrefslogtreecommitdiffstats
path: root/serve.h
diff options
context:
space:
mode:
Diffstat (limited to 'serve.h')
-rw-r--r--serve.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/serve.h b/serve.h
index fe65ba9f46..fc2683e24d 100644
--- a/serve.h
+++ b/serve.h
@@ -1,15 +1,15 @@
#ifndef SERVE_H
#define SERVE_H
-struct argv_array;
-extern int has_capability(const struct argv_array *keys, const char *capability,
- const char **value);
+struct strvec;
+int has_capability(const struct strvec *keys, const char *capability,
+ const char **value);
struct serve_options {
unsigned advertise_capabilities;
unsigned stateless_rpc;
};
#define SERVE_OPTIONS_INIT { 0 }
-extern void serve(struct serve_options *options);
+void serve(struct serve_options *options);
#endif /* SERVE_H */