diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2012-06-25 21:28:29 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2012-06-25 21:28:29 +0300 |
commit | 93e689fa83ef9a78f2bdfa093af31fcecb429d58 (patch) | |
tree | 18521d2c5e2d9f186f2e95df3164e220d3b37aae /ext.c | |
parent | 6139211362667682c3022a72321e0cd8945b6592 (diff) | |
download | egawk-93e689fa83ef9a78f2bdfa093af31fcecb429d58.tar.gz egawk-93e689fa83ef9a78f2bdfa093af31fcecb429d58.tar.bz2 egawk-93e689fa83ef9a78f2bdfa093af31fcecb429d58.zip |
Fix lint checking for extension functions.
Diffstat (limited to 'ext.c')
-rw-r--r-- | ext.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -123,6 +123,7 @@ make_builtin(const awk_ext_func_t *funcinfo) symbol = install_symbol(estrdup(name, strlen(name)), Node_ext_func); symbol->code_ptr = b; + track_ext_func(name); return true; } |