]> git.saurik.com Git - apple/xnu.git/blobdiff - libkern/zlib/adler32.c
xnu-3248.20.55.tar.gz
[apple/xnu.git] / libkern / zlib / adler32.c
index c94fde18702ee0957c3b2fbe020d00c01b29f177..e4b6756e9b9165cc6d404027a0e10ef7ab5bf9b3 100644 (file)
@@ -32,6 +32,7 @@
 
 /* @(#) $Id$ */
 
+
 #define ZLIB_INTERNAL
 #if KERNEL
     #include <libkern/zlib.h>
@@ -39,6 +40,7 @@
     #include "zlib.h"
 #endif /* KERNEL */
 
+
 #define BASE 65521UL    /* largest prime smaller than 65536 */
 #define NMAX 5552
 /* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */
@@ -124,6 +126,7 @@ uLong ZEXPORT adler32(adler, buf, len)
         return adler | (sum2 << 16);
     }
 
+
     /* do length NMAX blocks -- requires just one modulo operation */
     while (len >= NMAX) {
         len -= NMAX;