Copyright Digital Equipment Corp. All rights reserved.

IMPLICITFUNC

Message        <Context> the identifier "<name>" is implicitly
               declared as a function.

Description    A expression contained a reference to a function that
               has not been declared.  The C99 standard requires
               that all referenced functions must be declared before
               they are referenced.

User Action    Declare the function before it is referenced.