aboutsummaryrefslogtreecommitdiffstats
path: root/array.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2012-11-22 16:11:22 +0200
committerArnold D. Robbins <arnold@skeeve.com>2012-11-22 16:11:22 +0200
commit86024b7f014c286daa68c3a0a223ce51f6e13dfa (patch)
treed91f270960dc6400b3b84cade8511d747034c92a /array.c
parent391c19511eda50484a80827694f4555127cca1c8 (diff)
downloadegawk-86024b7f014c286daa68c3a0a223ce51f6e13dfa.tar.gz
egawk-86024b7f014c286daa68c3a0a223ce51f6e13dfa.tar.bz2
egawk-86024b7f014c286daa68c3a0a223ce51f6e13dfa.zip
Clean up of awk.h.
Diffstat (limited to 'array.c')
-rw-r--r--array.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/array.c b/array.c
index aa204c17..411bbe62 100644
--- a/array.c
+++ b/array.c
@@ -171,20 +171,6 @@ null_dump(NODE *symbol, NODE *subs ATTRIBUTE_UNUSED)
}
-/* r_in_array --- test whether the array element symbol[subs] exists or not,
- * return pointer to value if it does.
- */
-
-NODE *
-r_in_array(NODE *symbol, NODE *subs)
-{
- NODE **ret;
-
- ret = symbol->aexists(symbol, subs);
- return (ret ? *ret : NULL);
-}
-
-
/* assoc_copy --- duplicate input array "symbol" */
NODE *