// add two lines
// to check line number tables
void top() {
return; // 5
}
eights = 88;
top(); // 9
}
void nemcp1() {
// reserve this line
}
void emcp2() {
nemcp1(); // 16
return; // 17
}
int parawham = 12;
emcp2(); // 21
return; // 22
}
void bottom() {
return; // 26
}
static void stnemcp() {
// 30
}
static void stemcp() {
stnemcp(); // 34
return; // 35
}
}