[check __SIZEOF_POINTER__ instead of WORD_BIT for wordsize
John Meacham <john@repetae.net>**20100725120659
 Ignore-this: 715b7b3f7a4567959acee93073d4e601
] hunk ./src/rts/wsize.h 47
-#ifdef WORD_BIT
-#define __WORDSIZE WORD_BIT
+#ifdef __SIZEOF_POINTER__
+#define __WORDSIZE (CHAR_BIT*__SIZEOF_POINTER__)