pandora-build v0.78
[m6w6/libmemcached] / libmemcached / byteorder.c
index 5b1cf88bc8d0090a2ac9840783791c9cec861a20..24f8e8c6e88e1e13be7595325dd51c7f8b266c76 100644 (file)
@@ -3,7 +3,7 @@
 /* Byte swap a 64-bit number. */
 static inline uint64_t swap64(uint64_t in)
 {
-#ifndef BYTEORDER_BIG_ENDIAN
+#ifndef WORDS_BIGENDIAN
   /* Little endian, flip the bytes around until someone makes a faster/better
    * way to do this. */
   uint64_t rv= 0;