Some new commands and improvements
This commit is contained in:
@@ -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 */
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user