Fix ntohll test.. we need to link, not just compile ;-)
[m6w6/libmemcached] / libmemcached / byteorder.c
index 5b1cf88bc8d0090a2ac9840783791c9cec861a20..96a39bf88ff7d8fc166182b56c197ede274b24af 100644 (file)
@@ -1,14 +1,25 @@
+/* LibMemcached
+ * Copyright (C) 2006-2009 Brian Aker
+ * All rights reserved.
+ *
+ * Use and distribution licensed under the BSD license.  See
+ * the COPYING file in the parent directory for full text.
+ *
+ * Summary:
+ *
+ */
+
 #include "byteorder.h"
 
 /* Byte swap a 64-bit number. */
+#ifndef swap64
 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;
-  uint8_t x= 0;
-  for(x= 0; x < 8; x++)
+  for (uint8_t x= 0; x < 8; x++)
   {
     rv= (rv << 8) | (in & 0xff);
     in >>= 8;
@@ -17,8 +28,9 @@ static inline uint64_t swap64(uint64_t in)
 #else
   /* big-endian machines don't need byte swapping */
   return in;
-#endif
+#endif // WORDS_BIGENDIAN
 }
+#endif
 
 uint64_t ntohll(uint64_t value)
 {