summaryrefslogtreecommitdiff
path: root/wctype/wctype.c
diff options
context:
space:
mode:
Diffstat (limited to 'wctype/wctype.c')
-rw-r--r--wctype/wctype.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/wctype/wctype.c b/wctype/wctype.c
index 07cb518ad3..81b9ac9b43 100644
--- a/wctype/wctype.c
+++ b/wctype/wctype.c
@@ -45,9 +45,9 @@ wctype (const char *property)
#if __BYTE_ORDER == __BIG_ENDIAN
return result;
#else
-#define XSWAPU32(w) \
- ((((w) & 0xff00ff00) >> 8) | (((w) & 0xff00ff) << 8))
+# define SWAPU32(w) \
+ (((w) << 24) | (((w) & 0xff00) << 8) | (((w) >> 8) & 0xff00) | ((w) >> 24))
- return XSWAPU32 (result);
+ return SWAPU32 (result);
#endif
}