diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2012-11-22 16:11:22 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2012-11-22 16:11:22 +0200 |
commit | 86024b7f014c286daa68c3a0a223ce51f6e13dfa (patch) | |
tree | d91f270960dc6400b3b84cade8511d747034c92a /array.c | |
parent | 391c19511eda50484a80827694f4555127cca1c8 (diff) | |
download | egawk-86024b7f014c286daa68c3a0a223ce51f6e13dfa.tar.gz egawk-86024b7f014c286daa68c3a0a223ce51f6e13dfa.tar.bz2 egawk-86024b7f014c286daa68c3a0a223ce51f6e13dfa.zip |
Clean up of awk.h.
Diffstat (limited to 'array.c')
-rw-r--r-- | array.c | 14 |
1 files changed, 0 insertions, 14 deletions
@@ -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 * |