1 --- ./ircii-20060725/include/cast_sbox.h.orig Tue May 20 13:56:58 2008 2 +++ ./ircii-20060725/include/cast_sbox.h.changed Tue May 20 13:56:51 2008 3 @@ -2,21 +2,21 @@ 4 * cast_sbox.h: CAST5 sbox arrays. 5 * 6 * from RFC 2144 7 * 8 * public domain. 9 * 10 * $eterna: cast_sbox.h,v 1.9 2003/12/08 01:59:48 mrg Exp $ 11 */ 12 13 /* sigh */ 14 -#if __STDC__ /* || (__STDC__ == 0 && defined(__sun)) */ 15 +#if __STDC__ || (__STDC__ == 0 && defined(__sun)) 16 #define U(x) x##U 17 #define UL(x) x##UL 18 #else 19 #define U(x) x 20 #define UL(x) x/**/L 21 #endif 22 23 /* 24 * the bulk of the text for these comes from appendix A. of 25 # RFC 2144 "The CAST-128 Encryption Algorithm" 26