diff options
author | Mark Spruiell <mes@zeroc.com> | 2005-07-27 17:24:26 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2005-07-27 17:24:26 +0000 |
commit | 2a295a20ed21285b26acd848772b207ee754229b (patch) | |
tree | 94804ec705bdcbc0ae27415c7290f014d6304018 /cpp/src/IceUtil/InputUtil.cpp | |
parent | Adding JAD file creation to the build.xml. (diff) | |
download | ice-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.cpp | 4 |
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 |