diff options
author | Bernard Normier <bernard@zeroc.com> | 2004-01-23 22:37:27 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2004-01-23 22:37:27 +0000 |
commit | e472963b0f661ca49b2c1f67fc17eb601923788b (patch) | |
tree | fb45d999b05a51060e29d806f214ed0186d9fb64 /cpp/src/IceUtil/InputUtil.cpp | |
parent | fixes (diff) | |
download | ice-e472963b0f661ca49b2c1f67fc17eb601923788b.tar.bz2 ice-e472963b0f661ca49b2c1f67fc17eb601923788b.tar.xz ice-e472963b0f661ca49b2c1f67fc17eb601923788b.zip |
HP-UX port
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 cee85b3a152..128b5d93507 100644 --- a/cpp/src/IceUtil/InputUtil.cpp +++ b/cpp/src/IceUtil/InputUtil.cpp @@ -150,6 +150,10 @@ strToInt64(const char* s, char** endptr, int base) return result; +#elif defined(ICE_64) + return strtol(s, endptr, base); +#elif defined(__hpux) + return __strtoll(s, endptr, base); #else return strtoll(s, endptr, base); #endif |