aboutsummaryrefslogtreecommitdiffstats
path: root/awk.h
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2011-04-27 22:51:54 +0300
committerArnold D. Robbins <arnold@skeeve.com>2011-04-27 22:51:54 +0300
commit04746bc5c0301fac55badc956225f486607dffd9 (patch)
treebcf5a6644265574c59d2f47129009770ed4bab59 /awk.h
parent9e2c7a30a0dfa4f50ea4c052d18f9a923bb51b87 (diff)
downloadegawk-04746bc5c0301fac55badc956225f486607dffd9.tar.gz
egawk-04746bc5c0301fac55badc956225f486607dffd9.tar.bz2
egawk-04746bc5c0301fac55badc956225f486607dffd9.zip
Code cleanups in array.c and side effects in other files.
Diffstat (limited to 'awk.h')
-rw-r--r--awk.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/awk.h b/awk.h
index 7327a00e..7a304717 100644
--- a/awk.h
+++ b/awk.h
@@ -1044,13 +1044,6 @@ extern STACK_ITEM *stack_top;
#define freenode(n) ((n)->flags = 0, (n)->nextp = nextfree, nextfree = (n))
#endif /* not MPROF */
-#if __GNUC__ >= 2
-#define ahash_dupnode(n) ({NODE * _t = (n); _t->ahname_ref++; _t;})
-#else
-#define ahash_dupnode(n) (_t = (n), _t->ahname_ref++, _t)
-#endif
-
-
#define make_number(x) mk_number((x), (unsigned int)(MALLOC|NUMCUR|NUMBER))
#define make_string(s, l) r_make_str_node((s), (size_t) (l), 0)