コンパイラの警告 (レベル 4) C4211
非標準の拡張機能が使用されています: extern が static に再定義されました
既定の Microsoft 拡張機能 (/Ze) を使用して、extern
識別子を static
として再定義できます。
例
// C4211.c
// compile with: /W4
extern int i;
static int i; // C4211
int main()
{
}
このような再定義は、ANSI 互換性 (/Za) では無効です。