diff options
author | Alan Antonuk <alan.antonuk@gmail.com> | 2017-12-04 21:32:34 -0800 |
---|---|---|
committer | Alan Antonuk <alan.antonuk@gmail.com> | 2017-12-04 21:32:34 -0800 |
commit | cf96c0bec713ab6f1ac6528504bcfde603364479 (patch) | |
tree | c398a55e0c8c69a099f76fe6da0dd874a8e56cae /examples/amqps_bind.c | |
parent | bd7c497e5d1a1924661df2190d3c38f11add5b2b (diff) | |
download | rabbitmq-c-cf96c0bec713ab6f1ac6528504bcfde603364479.tar.gz |
Examples: remove #include <amqp_framing.h>
amqp_framing.h is included by amqp.h, user code should not need to
include this.
Diffstat (limited to 'examples/amqps_bind.c')
-rw-r--r-- | examples/amqps_bind.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/amqps_bind.c b/examples/amqps_bind.c index c78e0b5..38975f8 100644 --- a/examples/amqps_bind.c +++ b/examples/amqps_bind.c @@ -37,13 +37,13 @@ * ***** END LICENSE BLOCK ***** */ +#include <stdint.h> #include <stdlib.h> #include <stdio.h> #include <string.h> -#include <stdint.h> +#include <amqp.h> #include <amqp_ssl_socket.h> -#include <amqp_framing.h> #include "utils.h" |