From 7cc231b806b1cf6c0c7a71efe335efad892860f0 Mon Sep 17 00:00:00 2001 From: Alan Coopersmith Date: Fri, 16 Aug 2013 22:00:18 -0700 Subject: Drop WORD64 (Cray) support Signed-off-by: Alan Coopersmith --- XKBstr.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/XKBstr.h b/XKBstr.h index 1146908..3449bda 100644 --- a/XKBstr.h +++ b/XKBstr.h @@ -31,13 +31,7 @@ THE USE OR PERFORMANCE OF THIS SOFTWARE. #define XkbCharToInt(v) ((v)&0x80?(int)((v)|(~0xff)):(int)((v)&0x7f)) #define XkbIntTo2Chars(i,h,l) (((h)=((i>>8)&0xff)),((l)=((i)&0xff))) - -#if defined(WORD64) && defined(UNSIGNEDBITFIELDS) -#define Xkb2CharsToInt(h,l) ((h)&0x80?(int)(((h)<<8)|(l)|(~0xffff)):\ - (int)(((h)<<8)|(l)&0x7fff)) -#else #define Xkb2CharsToInt(h,l) ((short)(((h)<<8)|(l))) -#endif /* * The Xkb structs are full of implicit padding to properly align members. -- cgit v1.2.1