void loop();
afunc(void)
{
return false;
}
This is one of the things that the
-fpermissive
option (which is on in the AVR core) enables: implicit function return type int.
void loop();
afunc(void)
{
return false;
}
This is one of the things that the
-fpermissive
option (which is on in the AVR core) enables: implicit function return type int.