summaryrefslogtreecommitdiff
path: root/tools/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/common.h')
-rw-r--r--tools/common.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/tools/common.h b/tools/common.h
index 0a9af9d..77979ee 100644
--- a/tools/common.h
+++ b/tools/common.h
@@ -42,13 +42,13 @@ extern char *amqp_server_exception_string(amqp_rpc_reply_t r);
extern char *amqp_rpc_reply_string(amqp_rpc_reply_t r);
extern void die(const char *fmt, ...)
- __attribute__ ((format (printf, 1, 2)));
+__attribute__ ((format (printf, 1, 2)));
extern void die_errno(int err, const char *fmt, ...)
- __attribute__ ((format (printf, 2, 3)));
+__attribute__ ((format (printf, 2, 3)));
extern void die_amqp_error(int err, const char *fmt, ...)
- __attribute__ ((format (printf, 2, 3)));
+__attribute__ ((format (printf, 2, 3)));
extern void die_rpc(amqp_rpc_reply_t r, const char *fmt, ...)
- __attribute__ ((format (printf, 2, 3)));
+__attribute__ ((format (printf, 2, 3)));
extern const char *connect_options_title;
extern struct poptOption connect_options[];
@@ -61,12 +61,12 @@ extern void write_all(int fd, amqp_bytes_t data);
extern void copy_body(amqp_connection_state_t conn, int fd);
#define INCLUDE_OPTIONS(options) \
- {NULL, 0, POPT_ARG_INCLUDE_TABLE, options, 0, options ## _title, NULL}
+ {NULL, 0, POPT_ARG_INCLUDE_TABLE, options, 0, options ## _title, NULL}
extern poptContext process_options(int argc, const char **argv,
- struct poptOption *options,
- const char *help);
+ struct poptOption *options,
+ const char *help);
extern void process_all_options(int argc, const char **argv,
- struct poptOption *options);
+ struct poptOption *options);
extern amqp_bytes_t cstring_bytes(const char *str);