summaryrefslogtreecommitdiff
path: root/test/asortsymtab.awk
diff options
context:
space:
mode:
Diffstat (limited to 'test/asortsymtab.awk')
-rw-r--r--test/asortsymtab.awk10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/asortsymtab.awk b/test/asortsymtab.awk
new file mode 100644
index 00000000..7cb65a69
--- /dev/null
+++ b/test/asortsymtab.awk
@@ -0,0 +1,10 @@
+BEGIN {
+ asort(SYMTAB, arr)
+ for (idx in arr) {
+ print idx
+ }
+ asort(FUNCTAB, arr)
+ for (idx in arr) {
+ print idx
+ }
+}