diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2014-09-05 11:24:03 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2014-09-05 11:24:03 +0300 |
commit | c59f2580c1c2e3ac399c7fd33a860470e58ca76a (patch) | |
tree | 2db038b2be8bbf2456671f6ff5228b62e2641d06 /awk.h | |
parent | 3f30f514c6e81c4a9e8ba1374a5080683783c382 (diff) | |
parent | 0f5cb955662136ad4a93e35db5721dd986dfd55b (diff) | |
download | egawk-c59f2580c1c2e3ac399c7fd33a860470e58ca76a.tar.gz egawk-c59f2580c1c2e3ac399c7fd33a860470e58ca76a.tar.bz2 egawk-c59f2580c1c2e3ac399c7fd33a860470e58ca76a.zip |
Merge branch 'gawk-4.1-stable'
Diffstat (limited to 'awk.h')
-rw-r--r-- | awk.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -297,6 +297,7 @@ typedef enum nodevals { Node_func, /* lnode is param. list, rnode is body */ Node_ext_func, /* extension function, code_ptr is builtin code */ Node_old_ext_func, /* extension function, code_ptr is builtin code */ + Node_builtin_func, /* built-in function, main use is for FUNCTAB */ Node_array_ref, /* array passed by ref as parameter */ Node_array_tree, /* Hashed array tree (HAT) */ @@ -1380,6 +1381,7 @@ extern void valinfo(NODE *n, Func_print print_func, FILE *fp); extern void negate_num(NODE *n); typedef NODE *(*builtin_func_t)(int); /* function that implements a built-in */ extern builtin_func_t lookup_builtin(const char *name); +extern void install_builtins(void); /* builtin.c */ extern double double_to_int(double d); extern NODE *do_exp(int nargs); |