summaryrefslogtreecommitdiff
path: root/alloc.c
diff options
context:
space:
mode:
authorDmitry Bogatov <KAction@debian.org>2018-11-29 05:18:28 +0000
committerDmitry Bogatov <KAction@debian.org>2018-11-29 05:18:28 +0000
commitb19ff825af9758fa905bf0ba29bbff66fa66cd50 (patch)
tree4a6fc0b53bb646a038a422b7ef90d65968fde149 /alloc.c
parent35c0ccd3b0eedd2d14e26a109f5812a5c30c38aa (diff)
Import Upstream version 0.88
Diffstat (limited to 'alloc.c')
-rw-r--r--alloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/alloc.c b/alloc.c
index c661453..0e2d4cd 100644
--- a/alloc.c
+++ b/alloc.c
@@ -4,7 +4,7 @@ extern char *malloc();
extern void free();
#define ALIGNMENT 16 /* XXX: assuming that this alignment is enough */
-#define SPACE 4096 /* must be multiple of ALIGNMENT */
+#define SPACE 2048 /* must be multiple of ALIGNMENT */
typedef union { char irrelevant[ALIGNMENT]; double d; } aligned;
static aligned realspace[SPACE / ALIGNMENT];