--- rxvt-unicode/src/rxvtutil.C 2006/01/29 22:27:04 1.4 +++ rxvt-unicode/src/rxvtutil.C 2006/01/30 16:12:58 1.5 @@ -24,7 +24,7 @@ } #if !HAVE_GCC_BUILTINS -int ctz (unsigned int x) +int ctz (unsigned int x) CONST { int r = 0; @@ -39,7 +39,7 @@ return r; } -int popcount (unsigned int x) +int popcount (unsigned int x) CONST { x -= (x >> 1) & 0x55555555; x = ((x >> 2) & 0x33333333) + (x & 0x33333333);