I use WinAVR-20100110 (and it should not be changed for this project)
I have this function
void smalldelay(){ volatile int i ; for (i=0;i<100;i++) ; }
And even when I compile with -Os it make the function inline (I call it 20+ times)
First why ?
And how to avoid it ?
Correction I call it 14 times,