diff options
author | Hans Kristian Rosbach <hk-git@circlestorm.org> | 2015-05-12 16:03:14 +0200 |
---|---|---|
committer | Hans Kristian Rosbach <hk-git@circlestorm.org> | 2015-05-12 16:03:14 +0200 |
commit | d376be237b615e6669d95b4c758e63155a16fccc (patch) | |
tree | c589bc63fee9af69f1af46fe7884dce34267ca77 | |
parent | 0cd2fda2a376cfa359840f1e7e0b7338c9f5e15b (diff) |
Minor cleanup of includefiles relating mostly to stdint.h
-rw-r--r-- | adler32.c | 1 | ||||
-rw-r--r-- | crc32.c | 4 | ||||
-rw-r--r-- | match.c | 1 | ||||
-rw-r--r-- | zutil.h | 1 |
4 files changed, 2 insertions, 5 deletions
@@ -6,7 +6,6 @@ /* @(#) $Id$ */ #include "zutil.h" -#include <stdint.h> static uint32_t adler32_combine_ (uint32_t adler1, uint32_t adler2, z_off64_t len2); @@ -42,8 +42,7 @@ # endif /* !DYNAMIC_CRC_TABLE */ #endif /* MAKECRCH */ -#include "zutil.h" -#include <stdint.h> +#include "deflate.h" #if BYTE_ORDER == LITTLE_ENDIAN static uint32_t crc32_little (uint32_t, const unsigned char *, unsigned); @@ -423,7 +422,6 @@ uint32_t ZEXPORT crc32_combine64(crc1, crc2, len2) return crc32_combine_(crc1, crc2, len2); } -#include "deflate.h" #ifdef X86_PCLMULQDQ_CRC #include "arch/x86/x86.h" @@ -8,7 +8,6 @@ * OUT assertion: the match length is not greater than s->lookahead */ -#include <stdint.h> #include "deflate.h" #if (defined(UNALIGNED_OK) && MAX_MATCH == 258) @@ -23,6 +23,7 @@ #include <stddef.h> #include <string.h> #include <stdlib.h> +#include <stdint.h> #ifndef local # define local static |