diff options
author | Larry Wall <lwall@jpl-devvax.jpl.nasa.gov> | 1991-01-11 05:46:37 +0000 |
---|---|---|
committer | Larry Wall <lwall@jpl-devvax.jpl.nasa.gov> | 1991-01-11 05:46:37 +0000 |
commit | c623bd54707a8bf975b272e17e7c3b3342b31eb0 (patch) | |
tree | e87e70336fbb61f720550163fb83d99862142f67 /malloc.c | |
parent | 7e1cf235bd6c3a4fbf1093f84db8002929b8b6c6 (diff) | |
download | perl-c623bd54707a8bf975b272e17e7c3b3342b31eb0.tar.gz |
perl 3.0 patch #43 patch #42, continued
See patch #42.
Diffstat (limited to 'malloc.c')
-rw-r--r-- | malloc.c | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -1,6 +1,9 @@ -/* $Header: malloc.c,v 3.0.1.4 90/11/13 15:23:45 lwall Locked $ +/* $Header: malloc.c,v 3.0.1.5 91/01/11 18:09:52 lwall Locked $ * * $Log: malloc.c,v $ + * Revision 3.0.1.5 91/01/11 18:09:52 lwall + * patch42: Configure now checks alignment requirements + * * Revision 3.0.1.4 90/11/13 15:23:45 lwall * patch41: added hp malloc union overhead strut (that sounds very blue collar) * @@ -59,8 +62,8 @@ static findbucket(), morecore(); */ union overhead { union overhead *ov_next; /* when free */ -#if defined(mips) || defined(sparc) || defined(luna88k) || defined(hp9000s800) - double strut; /* alignment problems */ +#if ALIGNBYTES > 4 + double strut; /* alignment problems */ #endif struct { u_char ovu_magic; /* magic number */ |