From: Nathan Moinvaziri Date: Sat, 4 Jul 2020 03:18:01 +0000 (-0700) Subject: Removed unnecessary header guards in adler32 source files. X-Git-Tag: 1.9.9-b1~118 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6cb6f0ffebdad89985ffda43f380b5aea55d3de4;p=thirdparty%2Fzlib-ng.git Removed unnecessary header guards in adler32 source files. --- diff --git a/arch/x86/adler32_avx.c b/arch/x86/adler32_avx.c index 3745fcb2..cd5823f8 100644 --- a/arch/x86/adler32_avx.c +++ b/arch/x86/adler32_avx.c @@ -5,9 +5,6 @@ * For conditions of distribution and use, see copyright notice in zlib.h */ -#ifndef ADLER32_AVX2_H -#define ADLER32_AVX2_H - #include "../../zbuild.h" #include "../../zutil.h" @@ -118,5 +115,3 @@ ZLIB_INTERNAL uint32_t adler32_avx2(uint32_t adler, const unsigned char *buf, si } #endif - -#endif diff --git a/arch/x86/adler32_ssse3.c b/arch/x86/adler32_ssse3.c index 20a23cf3..931ea90c 100644 --- a/arch/x86/adler32_ssse3.c +++ b/arch/x86/adler32_ssse3.c @@ -5,9 +5,6 @@ * For conditions of distribution and use, see copyright notice in zlib.h */ -#ifndef ADLER32_SSSE3_H -#define ADLER32_SSSE3_H - #include "../../zbuild.h" #include "../../zutil.h" @@ -119,5 +116,3 @@ ZLIB_INTERNAL uint32_t adler32_ssse3(uint32_t adler, const unsigned char *buf, s } #endif - -#endif