Some new commands and improvements

This commit is contained in:
ceriel
1990-09-20 17:51:14 +00:00
parent b68cb52de6
commit 76f1cf30ee
17 changed files with 298 additions and 41 deletions

View File

@@ -30,7 +30,8 @@ static int
get_string(),
print_op(),
binop_prio(),
unop_prio();
unop_prio(),
fix_bin_to_pref();
static long
array_elsize();
@@ -61,7 +62,8 @@ static struct langdep m2 = {
get_name,
get_number,
get_token,
print_op
print_op,
fix_bin_to_pref
};
struct langdep *m2_dep = &m2;
@@ -537,3 +539,9 @@ print_op(p)
break;
}
}
static int
fix_bin_to_pref()
{
/* No problems of this kind in Modula-2 */
}