summaryrefslogtreecommitdiff
path: root/src/stdint.hpp
diff options
context:
space:
mode:
authorBrett Cameron <Brett.Cameron@hp.com>2011-03-08 14:39:52 +0100
committerMartin Sustrik <sustrik@250bpm.com>2011-03-08 14:39:52 +0100
commitb00be2651c39d0c08064f206b31a14e810ba0b22 (patch)
treede77476ed71703c080779211256b749aca40f027 /src/stdint.hpp
parent184bdb8e2bb6fe252af1bf4dd16d1c9ed8892f7a (diff)
Different fixed to make OpenVMS port work.
Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
Diffstat (limited to 'src/stdint.hpp')
-rw-r--r--src/stdint.hpp10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/stdint.hpp b/src/stdint.hpp
index 3ee6c06..73186d3 100644
--- a/src/stdint.hpp
+++ b/src/stdint.hpp
@@ -23,7 +23,7 @@
#include "platform.hpp"
-#ifdef ZMQ_HAVE_SOLARIS
+#if defined ZMQ_HAVE_SOLARIS || defined ZMQ_HAVE_OPENVMS
#include <inttypes.h>
@@ -54,14 +54,6 @@ typedef unsigned __int32 uint32_t;
typedef unsigned __int64 uint64_t;
#endif
-#elif defined ZMQ_HAVE_OPENVMS
-
-#include <types.h>
-typedef unsigned __int8 uint8_t;
-typedef unsigned __int16 uint16_t;
-typedef unsigned __int32 uint32_t;
-typedef unsigned __int64 uint64_t;
-
#else
#include <stdint.h>