diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2015-03-24 22:15:31 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2015-03-24 22:15:31 +0200 |
commit | 080694ae82635e76992158591b39a06af7363da0 (patch) | |
tree | 454a9361afa2904702baac9b3777fe76e721d7ca /awk.h | |
parent | 75459887958f5246bc5126261ec92c8f4d366a47 (diff) | |
download | egawk-080694ae82635e76992158591b39a06af7363da0.tar.gz egawk-080694ae82635e76992158591b39a06af7363da0.tar.bz2 egawk-080694ae82635e76992158591b39a06af7363da0.zip |
Further progress on indirect calls of builtins.
Diffstat (limited to 'awk.h')
-rw-r--r-- | awk.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1331,6 +1331,7 @@ extern void install_builtins(void); extern bool is_alpha(int c); extern bool is_alnum(int c); extern bool is_identchar(int c); +extern NODE *make_regnode(int type, NODE *exp); /* builtin.c */ extern double double_to_int(double d); extern NODE *do_exp(int nargs); |