Added prefix C_ to the names prolog, jump, and locals

This commit is contained in:
ceriel
1989-01-26 14:04:11 +00:00
parent e6fb2468c8
commit 817facac14
8 changed files with 28 additions and 28 deletions

View File

@@ -17,7 +17,7 @@ arith l;
symbol_definition( p);
set_local_visible( p);
locals( l);
jump( extnd_start( B_procno));
C_locals( l);
C_jump( extnd_start( B_procno));
}
}

View File

@@ -9,7 +9,7 @@ int d;
char *s;
swtxt();
jump(extnd_part( d));
C_jump(extnd_part( d));
symbol_definition( s = extnd_cont( d));
set_local_visible( s);
}
@@ -33,7 +33,7 @@ int d;
{
swtxt();
jump(extnd_cont( d));
C_jump(extnd_cont( d));
}

View File

@@ -13,7 +13,7 @@ arith l;
symbol_definition( extnd_name( s));
B_procno++;
prolog();
locals(l);
C_prolog();
C_locals(l);
B_locals_created = 1;
}

View File

@@ -18,9 +18,9 @@ char*s;
symbol_definition( extnd_name( s));
B_procno++;
prolog();
C_prolog();
B_locals_created = 0;
jump( extnd_pro( B_procno));
C_jump( extnd_pro( B_procno));
symbol_definition( ss = extnd_start( B_procno));
set_local_visible( ss);
}