aboutsummaryrefslogtreecommitdiffstats
path: root/src/cmdline.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/cmdline.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/cmdline.h b/src/cmdline.h
index eb626dbc2..945868b8c 100644
--- a/src/cmdline.h
+++ b/src/cmdline.h
@@ -22,6 +22,8 @@
#include <glib.h>
+#include <stdbool.h>
+
struct options {
gboolean kill;
gboolean daemon;
@@ -29,6 +31,8 @@ struct options {
gboolean verbose;
};
-void parse_cmdline(int argc, char **argv, struct options *options);
+bool
+parse_cmdline(int argc, char **argv, struct options *options,
+ GError **error_r);
#endif