Function Definition
#pragma INLINE
None
None
None
This pragma directs the Compiler to inline the next function in the source.
The pragma is the same as using the -Oi compiler option.
int i; #pragma INLINE static void fun(void) { i = 12; } void main(void) { fun(); // results in inlining `i = 12;' }