]> git.ipfire.org Git - thirdparty/zlib-ng.git/commitdiff
Removed unnecessary header guards in adler32 source files.
authorNathan Moinvaziri <nathan@nathanm.com>
Sat, 4 Jul 2020 03:18:01 +0000 (20:18 -0700)
committerHans Kristian Rosbach <hk-github@circlestorm.org>
Fri, 14 Aug 2020 20:20:50 +0000 (22:20 +0200)
arch/x86/adler32_avx.c
arch/x86/adler32_ssse3.c

index 3745fcb24ee41c305c2b881304e874dd81541968..cd5823f8b0f02f84e4ffde20292b22b9eae123b4 100644 (file)
@@ -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
index 20a23cf376c3ab2c834eaa7ed690b76659f94a19..931ea90c9b6bfc59df405ec3d25a23c3b8b9a5f2 100644 (file)
@@ -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