diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2017-08-21 21:18:16 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2017-08-21 21:18:16 +0300 |
commit | 650fc1a8f35f597dfd999d10136ec2812d203b22 (patch) | |
tree | f27dc0bdf770738ff7649d7ef8f151f1238c2797 /interpret.h | |
parent | 9291eb46773144be6405e1dda1e94ded63e93a11 (diff) | |
download | egawk-650fc1a8f35f597dfd999d10136ec2812d203b22.tar.gz egawk-650fc1a8f35f597dfd999d10136ec2812d203b22.tar.bz2 egawk-650fc1a8f35f597dfd999d10136ec2812d203b22.zip |
Integrate changes for z/OS.
Diffstat (limited to 'interpret.h')
-rw-r--r-- | interpret.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/interpret.h b/interpret.h index ec6a3dda..6c5b432e 100644 --- a/interpret.h +++ b/interpret.h @@ -966,7 +966,7 @@ arrayfor: case Op_ext_builtin: { size_t arg_count = pc->expr_count; - awk_ext_func_t *f = pc[1].c_func; + awk_ext_func_t *f = pc[1].c_function; size_t min_req = f->min_required_args; size_t max_expect = f->max_expected_args; awk_value_t result; @@ -1119,7 +1119,7 @@ match_re: npc[0].expr_count = arg_count; /* actual argument count */ npc[1] = pc[1]; npc[1].func_name = fname; /* name of the builtin */ - npc[1].c_func = bc->c_func; + npc[1].c_function = bc->c_function; ni = npc; JUMPTO(ni); } else @@ -1158,7 +1158,7 @@ match_re: pc->extfunc = bc->extfunc; pc->expr_count = arg_count; /* actual argument count */ (pc + 1)->func_name = fname; /* name of the builtin */ - (pc + 1)->c_func = bc->c_func; /* min and max args */ + (pc + 1)->c_function = bc->c_function; /* min and max args */ ni = pc; JUMPTO(ni); } |