diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2016-12-22 17:29:53 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2016-12-22 17:29:53 +0200 |
commit | 2af62b50e5b9574c0e169fb4d99c4912e56eef1f (patch) | |
tree | f4f264291d6597090fb36fc7f7cd725a105f557c /awk.h | |
parent | 1358693d2464c89a8d715fa6104ed36b48e45990 (diff) | |
parent | 0f15f82e19b32823fe3fdf51052389ca3b60e92e (diff) | |
download | egawk-2af62b50e5b9574c0e169fb4d99c4912e56eef1f.tar.gz egawk-2af62b50e5b9574c0e169fb4d99c4912e56eef1f.tar.bz2 egawk-2af62b50e5b9574c0e169fb4d99c4912e56eef1f.zip |
Merge branch 'master' into feature/fix-comments
Diffstat (limited to 'awk.h')
-rw-r--r-- | awk.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -767,7 +767,9 @@ typedef struct exp_instruction { NODE *dn; struct exp_instruction *di; NODE *(*fptr)(int); - awk_value_t *(*efptr)(int, awk_value_t *); + awk_value_t *(*efptr)(int num_actual_args, + awk_value_t *result, + struct awk_ext_func *finfo); long dl; char *name; } d; @@ -778,6 +780,7 @@ typedef struct exp_instruction { void (*aptr)(void); struct exp_instruction *xi; struct break_point *bpt; + awk_ext_func_t *exf; } x; short source_line; @@ -793,6 +796,8 @@ typedef struct exp_instruction { #define expr_count x.xl +#define c_func x.exf + #define target_continue d.di #define target_jmp d.di #define target_break x.xi |