summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Antonuk <aega@.med.umich.edu>2012-01-16 13:38:17 -0500
committerAlan Antonuk <aega@.med.umich.edu>2012-01-31 14:45:49 -0500
commit1d193380bcc7d2c2847573f6204e93d3949205ff (patch)
treebe82f3057e170ade9b3367523c4ee45d57e37bbf
parent16e2586ff6eff92fb6f805c630faa0b3ab8af5a5 (diff)
downloadrabbitmq-c-github-ask-1d193380bcc7d2c2847573f6204e93d3949205ff.tar.gz
amqp.h needs stdint.h and string.h to function correctly out of the box
-rw-r--r--librabbitmq/amqp.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/librabbitmq/amqp.h b/librabbitmq/amqp.h
index 5807da5..b756025 100644
--- a/librabbitmq/amqp.h
+++ b/librabbitmq/amqp.h
@@ -39,6 +39,9 @@
* ***** END LICENSE BLOCK *****
*/
+#include <string.h>
+#include <stdint.h>
+
#ifdef __cplusplus
extern "C" {
#endif