1994-06-24 14:02:31 +00:00
|
|
|
/* $Id$ */
|
1987-03-09 16:02:32 +00:00
|
|
|
/*
|
|
|
|
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
|
|
|
|
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
|
|
|
*/
|
1987-02-24 17:05:53 +00:00
|
|
|
#ifndef nil
|
|
|
|
#define nil 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define word_constant(c) (-32768L<=(c) && (c)<=32767L)
|
|
|
|
void Label(), dot_label(), branch();
|
|
|
|
int new_label(), new_dot_label();
|
|
|
|
char *proc_label();
|
|
|
|
extern char *curr_file;
|
|
|
|
|
2006-07-26 18:20:38 +00:00
|
|
|
/* dtrg: hack to avoid clashing with the Posix exp() function. */
|
|
|
|
#define exp myexp
|
|
|
|
|
1987-02-24 17:05:53 +00:00
|
|
|
void cwv(), cvw();
|
|
|
|
void bxx(), Loc(), Lol(), Lolp(), Lil(), Lof(), Lofp(), Lif();
|
|
|
|
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();
|
1991-10-22 09:01:09 +00:00
|
|
|
void ret(), x_end(), stl(), laedot(), del(), lol(), ldl(), meswp(), meserr();
|
1987-02-24 17:05:53 +00:00
|
|
|
void init_rt(), exp(), rom(), blt(), magic(), lin(), tst(), fil(), trp();
|
|
|
|
void main_fil(), init(), openfile(), closefile(), maxdes();
|
|
|
|
|
|
|
|
void par_begin(), par_fork(), par_end(), resumenext(), no_deadlock();
|
1987-02-25 16:56:31 +00:00
|
|
|
extern int Lflag;
|