summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2012-06-21 22:32:46 +0300
committerArnold D. Robbins <arnold@skeeve.com>2012-06-21 22:32:46 +0300
commitd0d954cce2ca5a2e0ed41116502b636446ac528f (patch)
treedb8c2d7a893254b5b2d6a7fffd7a09299cd7d259 /main.c
parent898eb2ad1d514887993994e60fe860ac3ee1bba8 (diff)
downloadgawk-d0d954cce2ca5a2e0ed41116502b636446ac528f.tar.gz
Remove extension() builtin.
Diffstat (limited to 'main.c')
-rw-r--r--main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.c b/main.c
index b3f7f9ec..bbe656da 100644
--- a/main.c
+++ b/main.c
@@ -644,7 +644,7 @@ out:
/* load extension libs */
for (s = srcfiles->next; s != srcfiles; s = s->next) {
if (s->stype == SRC_EXTLIB)
- (void) load_ext(s->fullpath, "dl_load");
+ load_ext(s->fullpath);
else if (s->stype != SRC_INC)
have_srcfile++;
}