diff options
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 |