may I to compile inline a function, which has not been declared with inline keyword .?
/* can write here "inline" */ void this_function ( )
{
return ;
}
int main ( void )
{
this_function () ; // here this function must be compiled as inline
this_function () ; // but not here ; now it must be called
}
E.F.P.E.