diff options
author | Nathan Moinvaziri <nathan@nathanm.com> | 2020-07-03 20:18:01 -0700 |
---|---|---|
committer | Hans Kristian Rosbach <hk-github@circlestorm.org> | 2020-08-14 22:20:50 +0200 |
commit | 6cb6f0ffebdad89985ffda43f380b5aea55d3de4 (patch) | |
tree | 22ad033b03af971ecf09887c54b6bfa59f8f45b8 /arch | |
parent | c81e7c9a7060a0bfa3d875c9485a1ca19f9f674b (diff) |
Removed unnecessary header guards in adler32 source files.
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/adler32_avx.c | 5 | ||||
-rw-r--r-- | arch/x86/adler32_ssse3.c | 5 |
2 files changed, 0 insertions, 10 deletions
diff --git a/arch/x86/adler32_avx.c b/arch/x86/adler32_avx.c index 3745fcb..cd5823f 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 20a23cf..931ea90 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 |