PyGC_Head:  Use "long double" instead of "double" as the worst-case
alignment gimmick.  David Abrahams notes that the standard "long double"
actually requires stricter alignment than "double" on some Tru64 box.
On my box and yours <wink>, it's the same, so no harm done on most
boxes.
diff --git a/Include/objimpl.h b/Include/objimpl.h
index e8aad54..a616620 100644
--- a/Include/objimpl.h
+++ b/Include/objimpl.h
@@ -272,7 +272,7 @@
 		union _gc_head *gc_prev;
 		int gc_refs;
 	} gc;
-	double dummy;  /* force worst-case alignment */
+	long double dummy;  /* force worst-case alignment */
 } PyGC_Head;
 
 extern PyGC_Head _PyGC_generation0;