X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=libmemcached%2Fbyteorder.c;h=28889aaee457158fce825a881bc02c9bb1d527db;hb=dd7bb96826037b01b659f59498f6318cf577909e;hp=c020785bd2603963f68c31fb213299980d82350c;hpb=88d4a911457b86d76908dd8ee25cc47ef2fe6aa9;p=awesomized%2Flibmemcached diff --git a/libmemcached/byteorder.c b/libmemcached/byteorder.c index c020785b..28889aae 100644 --- a/libmemcached/byteorder.c +++ b/libmemcached/byteorder.c @@ -20,10 +20,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); }