diff options
-rw-r--r-- | lib/System/Unix/TimeValue.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/System/Unix/TimeValue.inc b/lib/System/Unix/TimeValue.inc index 1df9e3b..8c8dfcc 100644 --- a/lib/System/Unix/TimeValue.inc +++ b/lib/System/Unix/TimeValue.inc @@ -26,6 +26,7 @@ std::string TimeValue::toString() const { time_t ourTime = time_t(this->toEpochTime()); #ifdef __hpux +// note that the following line needs -D_REENTRANT on HP-UX to be picked up asctime_r(localtime(&ourTime), buffer); #else ::asctime_r(::localtime(&ourTime), buffer); |