Copyright Digital Equipment Corp. All rights reserved.

INTIMPLIED

Message        In the declaration of "<name>", no type was
               specified.  Type defaulted to int.  This is a
               violation of the C99 standard.

Description    The declaration contains a storage-class specifier,
               but no type was specified.  The compiler will assume
               a type of int.  Omitting the type specifier is not
               valid in C++ or in C99, and is often considered poor
               programming practice.

User Action    Add a type specifier to the declaration.