Copyright Digital Equipment Corp. All rights reserved.

ZEROELEMENTS1

Message        <Context> zero cannot be used as an element count
               specifier.  It will be replaced with the constant one
               in this context.

Description    The C standard states that if an element count
               specifier is a constant expression then it shall have
               a value greater than zero.  For compatibility with
               some other C compilers, HP C will accept a zero
               element count specifier.  When appearing outside a
               struct/union member or a parameter, the compiler will
               replace the zero with the value one.  This may or may
               not be compatible with the behavior of other C
               compilers.

User Action    Use a valid element count specifier.