VMS Help  —  CC  Messages  INTRINSICINT
 Message        <Context> the <place> type for intrinsic "<name>" is
                being changed from "size_t" to "int".

 Description    A function that is handled internally by the compiler
                expects an argument type or return type of "size_t",
                but the prototype for the function uses "int".  The
                compiler will use "int" in this case.

 User Action    Declare the function by including the appropriate
                header file.  Alternatively, provide a private
                declaration (or modify an existing private
                declaration) with "size_t" in the appropriate
                location(s), and with "size_t" defined as it is in
                the standard system header files.  If the function is
                not intended to refer to the runtime library routine,
                the intrinsic version can be disabled by means of the
                "#pragma function (function_name)" directive.
Close Help