[WARNING]
A static function was used, but not defined. As static functions can only be defined in this compilation unit, the function using the undefined static cannot successfully link.
static void f(void);
void main(void) {
f();
}
Define the static function, remove its usage or declare it as external.