diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2013-01-11 14:30:08 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2013-01-11 14:30:08 +0200 |
commit | 0bd22a097fcde68cf8586e8737ac7ad8f4286669 (patch) | |
tree | 210f7dedc397c1e3d887d04f48bb466ac74a07b9 /awkgram.c | |
parent | 478109e116820b48e0fa7769698e2498038c11b8 (diff) | |
download | gawk-0bd22a097fcde68cf8586e8737ac7ad8f4286669.tar.gz |
Make mpfr and, or, xor, accept >= 2 arguments.
Diffstat (limited to 'awkgram.c')
-rw-r--r-- | awkgram.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4428,7 +4428,7 @@ static const struct token tokentab[] = { {"printf", Op_K_printf, LEX_PRINTF, 0, 0, 0}, {"rand", Op_builtin, LEX_BUILTIN, NOT_OLD|A(0), do_rand, MPF(rand)}, {"return", Op_K_return, LEX_RETURN, NOT_OLD, 0, 0}, -{"rshift", Op_builtin, LEX_BUILTIN, GAWKX|A(2), do_rshift, MPF(rhift)}, +{"rshift", Op_builtin, LEX_BUILTIN, GAWKX|A(2), do_rshift, MPF(rshift)}, {"sin", Op_builtin, LEX_BUILTIN, NOT_OLD|A(1), do_sin, MPF(sin)}, {"split", Op_builtin, LEX_BUILTIN, A(2)|A(3)|A(4), do_split, 0}, {"sprintf", Op_builtin, LEX_BUILTIN, 0, do_sprintf, 0}, |