ack/util/ceg/defaults/pseudo/C_pro.c

21 lines
259 B
C
Raw Normal View History

#define CODE_EXPANDER
1987-11-20 10:41:03 +00:00
#include <em.h>
#include "back.h"
1989-01-26 13:24:23 +00:00
extern int B_locals_created;
extern int B_procno;
1987-11-20 10:41:03 +00:00
1993-11-10 15:07:12 +00:00
void
1987-11-20 10:41:03 +00:00
C_pro( s, l)
char *s;
arith l;
{
swtxt();
symbol_definition( extnd_name( s));
1989-01-26 13:24:23 +00:00
B_procno++;
C_prolog();
C_locals(l);
1989-01-26 13:24:23 +00:00
B_locals_created = 1;
1987-11-20 10:41:03 +00:00
}