| |||
| Home > Compiler-specific Features > __inline | |||
The __inline keyword suggests to the compiler
that it compiles a C or C++ function inline, if it is sensible to
do so.
The semantics of __inline are exactly the
same as those of the inline keyword. However, inline is
not available in C90.
__inline is a storage class qualifier.
It does not affect the type of a function.
Inline functions in Using the ARM Compiler.