]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/decl-global-ext.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / decl-global-ext.c
CommitLineData
e9ff9b17
FJ
1int merror = 0;
2extern int merror;
3
4void mtherr (int code)
5{
6 merror = code + 1;
7}
8
9int main()
10{
11 mtherr(7);
12 return 0;
13}