summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Antonuk <aega@med.umich.edu>2012-03-06 16:09:23 -0500
committerAlan Antonuk <aega@med.umich.edu>2012-03-06 16:09:23 -0500
commit7d222a75e098a73746de945da8f1ff368709e6ee (patch)
tree434a3019b1cd74d3eaef25eed511f802b8f72bae
parentc0a56f927af99561a99f69c1fd8a01e6536c5fab (diff)
downloadrabbitmq-c-github-ask-7d222a75e098a73746de945da8f1ff368709e6ee.tar.gz
amqp.h should include stdint.h
amqp.h uses uint8_t, uint16_t, uint32_t, and uint64_t and therefore should #include <stdint.h>
-rw-r--r--librabbitmq/amqp.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/librabbitmq/amqp.h b/librabbitmq/amqp.h
index 5807da5..dcf4de3 100644
--- a/librabbitmq/amqp.h
+++ b/librabbitmq/amqp.h
@@ -39,6 +39,8 @@
* ***** END LICENSE BLOCK *****
*/
+#include <stdint.h>
+
#ifdef __cplusplus
extern "C" {
#endif