aboutsummaryrefslogtreecommitdiffstats
path: root/ext.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2012-06-25 21:28:29 +0300
committerArnold D. Robbins <arnold@skeeve.com>2012-06-25 21:28:29 +0300
commit93e689fa83ef9a78f2bdfa093af31fcecb429d58 (patch)
tree18521d2c5e2d9f186f2e95df3164e220d3b37aae /ext.c
parent6139211362667682c3022a72321e0cd8945b6592 (diff)
downloadegawk-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.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext.c b/ext.c
index 14d55c5f..af6542d4 100644
--- a/ext.c
+++ b/ext.c
@@ -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;
}