2005-07-21 [darko] 1.9.12cvs89
[claws.git] / src / msgcache.c
index 18ff7ca852a93e73db6b9bd8771684ebb9dfc6b5..06eed7f23257836568300c245bcc89e90507fdf6 100644 (file)
 
 #include <time.h>
 
-#include <endian.h>
-
 #include "msgcache.h"
 #include "utils.h"
 #include "procmsg.h"
 #include "codeconv.h"
 
-#ifdef __BIG_ENDIAN__
+#if G_BYTE_ORDER == G_BIG_ENDIAN
 #define bswap_32(x) \
      ((((x) & 0xff000000) >> 24) | (((x) & 0x00ff0000) >>  8) | \
       (((x) & 0x0000ff00) <<  8) | (((x) & 0x000000ff) << 24))