summaryrefslogtreecommitdiff
path: root/cpp/src/IceUtil/InputUtil.cpp
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2005-07-27 17:24:26 +0000
committerMark Spruiell <mes@zeroc.com>2005-07-27 17:24:26 +0000
commit2a295a20ed21285b26acd848772b207ee754229b (patch)
tree94804ec705bdcbc0ae27415c7290f014d6304018 /cpp/src/IceUtil/InputUtil.cpp
parentAdding JAD file creation to the build.xml. (diff)
downloadice-2a295a20ed21285b26acd848772b207ee754229b.tar.bz2
ice-2a295a20ed21285b26acd848772b207ee754229b.tar.xz
ice-2a295a20ed21285b26acd848772b207ee754229b.zip
fix for __strtoll compilation error on HP-UX
Diffstat (limited to 'cpp/src/IceUtil/InputUtil.cpp')
-rw-r--r--cpp/src/IceUtil/InputUtil.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/cpp/src/IceUtil/InputUtil.cpp b/cpp/src/IceUtil/InputUtil.cpp
index 00dbc5e61fa..4e0a6f59e88 100644
--- a/cpp/src/IceUtil/InputUtil.cpp
+++ b/cpp/src/IceUtil/InputUtil.cpp
@@ -15,6 +15,10 @@
#include <limits.h>
#endif
+#if defined(__hpux)
+#include <inttypes.h>
+#endif
+
using namespace std;
namespace IceUtil