Copyright Digital Equipment Corp. All rights reserved.

INVSTATIC6

Message        <Context> neither the keyword "static" nor a type
               qualifier may be used in array-bounds for old-style
               function parameters.  Keyword/qualifiers ignored.

Description    Use of the keyword "static" or a type specifier
               within the outermost array bound specifier of a
               formal parameter is a new feature in the C99
               statndard.  It cannot be used in old-style function
               definitions.

User Action    Remove the keywords or convert the code to use
               prototype-style function declarations and
               definitions.