Fix coding style violations
[awesomized/libmemcached] / libmemcached / byteorder.c
index c020785bd2603963f68c31fb213299980d82350c..28889aaee457158fce825a881bc02c9bb1d527db 100644 (file)
@@ -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);
 }