1 /* adler32_avx2.c -- compute the Adler-32 checksum of a data stream
2  * Copyright (C) 1995-2011 Mark Adler
3  * Authors:
4  *   Brian Bockelman <[email protected]>
5  * For conditions of distribution and use, see copyright notice in zlib.h
6  */
7 
8 #include <immintrin.h>
9 
10 #ifdef X86_AVX2_ADLER32
11 
12 #include "adler32_avx2_tpl.h"
13 
14 #define COPY
15 #include "adler32_avx2_tpl.h"
16 
17 #endif
18