23a24,28
> #ifdef SHORT_INTS
> #define	BITS_PER_WORD	16
> #define	WORDSIZE(n)	(((n) + 15) / 16)
> #define	SETBIT(x, i)	((x)[(i)>>4] |= (1<<((i) & 15)))
> #else
26a32
> #endif
