[ERROR]
An extern identifier was redefined as static.
extern int i;
static int i; // error
Remove either the extern specifier of the first declaration, or the static specifier of the second occurrence of the identifier.