critical impact:
NLTBMAX - undefined (CrUn52)
Problem description
The NLTBMAX constant is defined in the time.h header file on Tru64 UNIX, but not on HP-UX.
On Tru64 UNIX, NLTBMAX is the suggested default length of time/date buffer, and is defined to be 64. Identifiers
 NLTBMAX |
|
|
|
|
See also
Solution description
Modify your code.
Either replace NLTBMAX with a number (for example, 64) or define the macro as follows:
#ifndef NLTBMAX
#define NLTBMAX 64
#endif
Problem summary
| classifications |
source types |
OS release |
severity |
type |
| DA |
C, C++ |
any HP-UX 11i version |
critical |
unavailable |
|