aboutsummaryrefslogtreecommitdiffstats
path: root/awkgram.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 /awkgram.c
parent898eb2ad1d514887993994e60fe860ac3ee1bba8 (diff)
downloadegawk-d0d954cce2ca5a2e0ed41116502b636446ac528f.tar.gz
egawk-d0d954cce2ca5a2e0ed41116502b636446ac528f.tar.bz2
egawk-d0d954cce2ca5a2e0ed41116502b636446ac528f.zip
Remove extension() builtin.
Diffstat (limited to 'awkgram.c')
-rw-r--r--awkgram.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/awkgram.c b/awkgram.c
index c8c7a084..a454b0c9 100644
--- a/awkgram.c
+++ b/awkgram.c
@@ -4562,7 +4562,6 @@ static const struct token tokentab[] = {
{"eval", Op_symbol, LEX_EVAL, 0, 0, 0},
{"exit", Op_K_exit, LEX_EXIT, 0, 0, 0},
{"exp", Op_builtin, LEX_BUILTIN, A(1), do_exp, MPF(exp)},
-{"extension", Op_builtin, LEX_BUILTIN, GAWKX|A(2), do_ext, 0},
{"fflush", Op_builtin, LEX_BUILTIN, RESX|A(0)|A(1), do_fflush, 0},
{"for", Op_K_for, LEX_FOR, BREAK|CONTINUE, 0, 0},
{"func", Op_func, LEX_FUNCTION, NOT_POSIX|NOT_OLD, 0, 0},
@@ -5160,7 +5159,7 @@ load_library(INSTRUCTION *file)
return -1;
}
- (void) load_ext(s->fullpath, "dl_load");
+ load_ext(s->fullpath);
return 0;
}