extnd_ilb changed, declared holno and procno

This commit is contained in:
ceriel 1988-11-18 17:43:47 +00:00
parent f2d5f15e51
commit f452bfc1e1
2 changed files with 3 additions and 2 deletions

View file

@ -89,7 +89,7 @@ t_C_info C_info[] = {
/* B_ARG */ { "( b)\nlabel b;\n{\n",
{ STRING, 0, 0, 0},
{ "b", 0, 0, 0},
{ "extnd_ilb( b)", 0, 0, 0}},
{ "extnd_ilb( b, procno)", 0, 0, 0}},
/* STRING+ARITH */ { "( val, sz)\nchar *val;\narith sz;\n{\n",
{ STRING, ARITH, 0, 0},
{ "val", "sz", 0, 0},
@ -117,7 +117,7 @@ t_C_info C_info[] = {
/* BSS_ILB */ { "( n, b, i)\narith n;\nlabel b;int i;\n\n{\n",
{ ARITH, STRING, INT, 0},
{ "n", "b", "i", 0},
{ "n", "extnd_ilb( b)", "i", 0}},
{ "n", "extnd_ilb( b, procno)", "i", 0}},
/* ID+N_ARG */ { "( p, n)\nchar *p;\narith n;\n{\n",
{ STRING, ARITH, 0, 0},
{ "p", "n", 0, 0},

View file

@ -160,4 +160,5 @@ file_header()
out( "#include <em.h>\n");
out( "#include \"mach.h\"\n");
out( "#include \"back.h\"\n\n");
out( "extern int holno, procno;\n\n");
}