1988-02-03 12:48:58 +00:00
|
|
|
#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++;
|
1989-01-26 14:04:11 +00:00
|
|
|
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
|
|
|
}
|