Merged build.
[m6w6/libmemcached] / libmemcached / byteorder.c
index c020785bd2603963f68c31fb213299980d82350c..4b6eeb07acbeafaf2ea54107f15e824dcf47ed73 100644 (file)
@@ -1,14 +1,25 @@
-#include "common.h"
+/* 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. */
-static inline uint64_t swap64(uint64_t in) 
+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(x= 0; x < 8; x++)
   {
     rv= (rv << 8) | (in & 0xff);
     in >>= 8;
@@ -20,10 +31,12 @@ static inline uint64_t swap64(uint64_t in)
 #endif
 }
 
-uint64_t ntohll(uint64_t value) {
+uint64_t ntohll(uint64_t value)
+{
   return swap64(value);
 }
 
-uint64_t htonll(uint64_t value) {
+uint64_t htonll(uint64_t value)
+{
   return swap64(value);
 }