Function prototype with newline compiler error?

void loop();

afunc(void)
{
  return false;
}

This is one of the things that the :enraged_face: :angry: -fpermissive :enraged_face: :angry: option (which is on in the AVR core) enables: implicit function return type int.

2 Likes