Loading...
Select Version
&pagelevel(4)&pagelevel
The inline pragma is used to specify the names of the user-defined C functions to besubstituted inline by the compiler.
#pragma inline name
name Name of a C function to be substituted inline.
The given C functions are substituted inline only if the following options are specified: -F inline_by_source or -F i in POSIX and INLINING=*YES in SDF. The inline pragma is not supported in the C++ modes, since C++ has built-in mechanisms for inlining functions.