nonstandard extension used : redefined extern to static
With the default Microsoft extensions (/Ze), you can redefine an extern identifier as static.
Example
extern int i; static int i; // warning
Such redefinitions are illegal under ANSI compatibility (/Za).