1 int merror = 0;
2 extern int merror;
3
4 void mtherr (int code)
5 {
6 merror = code + 1;
7 }
8
9 int main()
10 {
11 mtherr(7);
12 return 0;
13 }