From 6cb6f0ffebdad89985ffda43f380b5aea55d3de4 Mon Sep 17 00:00:00 2001 From: Nathan Moinvaziri Date: Fri, 3 Jul 2020 20:18:01 -0700 Subject: [PATCH] Removed unnecessary header guards in adler32 source files. --- arch/x86/adler32_avx.c | 5 ----- arch/x86/adler32_ssse3.c | 5 ----- 2 files changed, 10 deletions(-) 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 -- 2.47.2