X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=libmemcached%2Fbyteorder.c;h=4b6eeb07acbeafaf2ea54107f15e824dcf47ed73;hb=3928e14fbe1ed17cefe9bdbbb282fb7ecf053e7a;hp=5b1cf88bc8d0090a2ac9840783791c9cec861a20;hpb=90f605b1e1472f5c4400f862e4236be7670cae13;p=m6w6%2Flibmemcached diff --git a/libmemcached/byteorder.c b/libmemcached/byteorder.c index 5b1cf88b..4b6eeb07 100644 --- a/libmemcached/byteorder.c +++ b/libmemcached/byteorder.c @@ -1,9 +1,20 @@ +/* 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) { -#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;