Do not define _end; causes name clashes

This commit is contained in:
ceriel 1991-10-22 09:01:09 +00:00
parent 76fb50807b
commit 4d82a1b67e
3 changed files with 4 additions and 4 deletions

View file

@ -501,7 +501,7 @@ void epilogue(proc) register struct symbol *proc;
curr_level--;
ret(0);
_end(-min_offset);
x_end(-min_offset);
}
void rep_init(v, e1, e2, r_info)
@ -606,7 +606,7 @@ void trailer()
else {
loc(0);
ret(wz);
_end(-min_offset);
x_end(-min_offset);
}
closefile();
}

View file

@ -316,7 +316,7 @@ void cal(lab) char *lab; { C_cal(lab); }
void cmi() { C_cmi((arith) vz); }
void com() { C_com((arith) vz); }
void del(offset) int offset; { C_del((arith) offset); }
void _end(size) int size; { C_end((arith) size); }
void x_end(size) int size; { C_end((arith) size); }
void exp(lab) char *lab; { C_exp(lab); }
void ior() { C_ior((arith) vz); }
void lae(lab, offset) char *lab; int offset;

View file

@ -19,7 +19,7 @@ void Txx(), xxi(), Stl(), Inl(), Del(), Loe();
void cmi(), ngi(), and(), ior(), xor(), sli(), sri(), com(), lar(), lxl();
void lxa(), lfr(), ste(), lae(), aar(), lal(), adp(), ldc0(), zeq(), zne();
void zlt(), zgt(), blm(), sti(), cal(), asp(), loc(), lor0(), loi(), pro();
void ret(), _end(), stl(), laedot(), del(), lol(), ldl(), meswp(), meserr();
void ret(), x_end(), stl(), laedot(), del(), lol(), ldl(), meswp(), meserr();
void init_rt(), exp(), rom(), blt(), magic(), lin(), tst(), fil(), trp();
void main_fil(), init(), openfile(), closefile(), maxdes();