summaryrefslogtreecommitdiff
path: root/examples/amqps_listenq.c
diff options
context:
space:
mode:
authorAlan Antonuk <alan.antonuk@gmail.com>2017-12-04 21:32:34 -0800
committerAlan Antonuk <alan.antonuk@gmail.com>2017-12-04 21:32:34 -0800
commitcf96c0bec713ab6f1ac6528504bcfde603364479 (patch)
treec398a55e0c8c69a099f76fe6da0dd874a8e56cae /examples/amqps_listenq.c
parentbd7c497e5d1a1924661df2190d3c38f11add5b2b (diff)
downloadrabbitmq-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_listenq.c')
-rw-r--r--examples/amqps_listenq.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/amqps_listenq.c b/examples/amqps_listenq.c
index 7095686..60ca01e 100644
--- a/examples/amqps_listenq.c
+++ b/examples/amqps_listenq.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 <assert.h>