summaryrefslogtreecommitdiff
path: root/malloc.c
diff options
context:
space:
mode:
authorLarry Wall <lwall@jpl-devvax.jpl.nasa.gov>1991-01-11 05:46:37 +0000
committerLarry Wall <lwall@jpl-devvax.jpl.nasa.gov>1991-01-11 05:46:37 +0000
commitc623bd54707a8bf975b272e17e7c3b3342b31eb0 (patch)
treee87e70336fbb61f720550163fb83d99862142f67 /malloc.c
parent7e1cf235bd6c3a4fbf1093f84db8002929b8b6c6 (diff)
downloadperl-c623bd54707a8bf975b272e17e7c3b3342b31eb0.tar.gz
perl 3.0 patch #43 patch #42, continued
See patch #42.
Diffstat (limited to 'malloc.c')
-rw-r--r--malloc.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/malloc.c b/malloc.c
index 6ad48b93a3..3ed5536cee 100644
--- a/malloc.c
+++ b/malloc.c
@@ -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 */