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 /ext.c | |
parent | 9291eb46773144be6405e1dda1e94ded63e93a11 (diff) | |
download | egawk-650fc1a8f35f597dfd999d10136ec2812d203b22.tar.gz egawk-650fc1a8f35f597dfd999d10136ec2812d203b22.tar.bz2 egawk-650fc1a8f35f597dfd999d10136ec2812d203b22.zip |
Integrate changes for z/OS.
Diffstat (limited to 'ext.c')
-rw-r--r-- | ext.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -135,7 +135,7 @@ make_builtin(const awk_ext_func_t *funcinfo) b = bcalloc(Op_symbol, 1, 0); b->extfunc = funcinfo->function; - b->c_func = (awk_ext_func_t *) funcinfo; + b->c_function = (awk_ext_func_t *) funcinfo; /* NB: extension sub must return something */ |