diff options
| author | Kacper <kacper@mail.openlinux.dev> | 2025-12-09 23:14:53 +0100 |
|---|---|---|
| committer | Kacper <kacper@mail.openlinux.dev> | 2025-12-09 23:14:53 +0100 |
| commit | 169daa11155988a210fac949297381743f3cb400 (patch) | |
| tree | 602ef5df5ae9ea075ab3d5dac3c8ad60da1ea2cc /bin/gzip/inflate.c | |
| parent | 4e2112e165fdd94dee58378e3ea32892f3710cd7 (diff) | |
feat: clang-tidy fixes
Diffstat (limited to 'bin/gzip/inflate.c')
| -rw-r--r-- | bin/gzip/inflate.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/bin/gzip/inflate.c b/bin/gzip/inflate.c index bf9774f0..af2e1e92 100644 --- a/bin/gzip/inflate.c +++ b/bin/gzip/inflate.c @@ -95,15 +95,18 @@ the two sets of lengths. */ +#include "stddef.h" // for NULL + +#include <stdio.h> // for fprintf, stderr +#include <string.h> // for memcpy #ifdef RCSID static char rcsid[] = "$Id: inflate.c,v 1.1 2002/08/18 00:59:21 hpa Exp $"; #endif -#include <sys/types.h> -#include <stdlib.h> +#include "gzip.h" // for uch, ulg, get_byte, ush, outcnt, OF, flush_window + +#include <stdlib.h> // for free, malloc -#include "tailor.h" -#include "gzip.h" #define slide window /* Huffman code lookup table entry--this entry is four bytes for machines |
