From 8a931a7554931d9a387edaa07fd76b5d41257b1e Mon Sep 17 00:00:00 2001 From: Ivan Pechorin Date: Tue, 24 Sep 2013 14:00:08 +0400 Subject: [PATCH] stdint.h is not available on all platforms --- include/zmq.h | 3 +++ include/zmq_utils.h | 1 - 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/include/zmq.h b/include/zmq.h index 698e5479..bf997973 100644 --- a/include/zmq.h +++ b/include/zmq.h @@ -62,6 +62,9 @@ typedef __int32 int32_t; # ifndef uint16_t typedef unsigned __int16 uint16_t; # endif +# ifndef uint8_t +typedef unsigned __int8 uint8_t; +# endif #else # include #endif diff --git a/include/zmq_utils.h b/include/zmq_utils.h index 25acbfd0..37641664 100644 --- a/include/zmq_utils.h +++ b/include/zmq_utils.h @@ -22,7 +22,6 @@ #include #include -#include #include #ifdef __cplusplus