From bcfb15368033a922fa375d78fb84269e1f9ab11a Mon Sep 17 00:00:00 2001 From: Robert Spalek Date: Fri, 16 Jul 2004 11:46:06 +0000 Subject: [PATCH] prune the original source code yet more --- lib/adler32.c | 26 +------------------------- 1 file changed, 1 insertion(+), 25 deletions(-) diff --git a/lib/adler32.c b/lib/adler32.c index 613ed72d..589c0f7d 100644 --- a/lib/adler32.c +++ b/lib/adler32.c @@ -18,31 +18,7 @@ #define DO4(buf,i) DO2(buf,i); DO2(buf,i+2); #define DO8(buf,i) DO4(buf,i); DO4(buf,i+4); #define DO16(buf) DO8(buf,0); DO8(buf,8); - -#ifdef NO_DIVIDE -# define MOD(a) \ - do { \ - if (a >= (BASE << 16)) a -= (BASE << 16); \ - if (a >= (BASE << 15)) a -= (BASE << 15); \ - if (a >= (BASE << 14)) a -= (BASE << 14); \ - if (a >= (BASE << 13)) a -= (BASE << 13); \ - if (a >= (BASE << 12)) a -= (BASE << 12); \ - if (a >= (BASE << 11)) a -= (BASE << 11); \ - if (a >= (BASE << 10)) a -= (BASE << 10); \ - if (a >= (BASE << 9)) a -= (BASE << 9); \ - if (a >= (BASE << 8)) a -= (BASE << 8); \ - if (a >= (BASE << 7)) a -= (BASE << 7); \ - if (a >= (BASE << 6)) a -= (BASE << 6); \ - if (a >= (BASE << 5)) a -= (BASE << 5); \ - if (a >= (BASE << 4)) a -= (BASE << 4); \ - if (a >= (BASE << 3)) a -= (BASE << 3); \ - if (a >= (BASE << 2)) a -= (BASE << 2); \ - if (a >= (BASE << 1)) a -= (BASE << 1); \ - if (a >= BASE) a -= BASE; \ - } while (0) -#else -# define MOD(a) a %= BASE -#endif +#define MOD(a) a %= BASE uns update_adler32(uns adler, byte *buf, uns len) -- 2.39.2