about summary refs log tree commit diff
path: root/Src/zsh.h
diff options
context:
space:
mode:
authorTanaka Akira <akr@users.sourceforge.net>2000-01-04 16:00:59 +0000
committerTanaka Akira <akr@users.sourceforge.net>2000-01-04 16:00:59 +0000
commit3930f5c4e0d95cfef7c07177afaa4aefb9f04841 (patch)
treeb7b3348eab1021dd1ac59e5b66d269c99790e886 /Src/zsh.h
parent01d4ad38356395d4cc47d9972b29d5643673df6f (diff)
downloadzsh-3930f5c4e0d95cfef7c07177afaa4aefb9f04841.tar.gz
zsh-3930f5c4e0d95cfef7c07177afaa4aefb9f04841.tar.xz
zsh-3930f5c4e0d95cfef7c07177afaa4aefb9f04841.zip
zsh-workers/9203
Diffstat (limited to 'Src/zsh.h')
-rw-r--r--Src/zsh.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/Src/zsh.h b/Src/zsh.h
index 84f6a836f..a5e817019 100644
--- a/Src/zsh.h
+++ b/Src/zsh.h
@@ -1559,9 +1559,6 @@ struct heap {
     size_t size;		/* size of heap                              */
     size_t used;		/* bytes used from the heap                  */
     struct heapstack *sp;	/* used by pushheap() to save the value used */
-#ifdef PAD_64_BIT
-    size_t dummy;		/* Make sure sizeof(heap) is a multiple of 8 */
-#endif
 #define arena(X)	((char *) (X) + sizeof(struct heap))
 };