From 169daa11155988a210fac949297381743f3cb400 Mon Sep 17 00:00:00 2001 From: Kacper Date: Tue, 9 Dec 2025 23:14:53 +0100 Subject: feat: clang-tidy fixes --- bin/gzip/util.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'bin/gzip/util.c') diff --git a/bin/gzip/util.c b/bin/gzip/util.c index ce580ff9..056f85e9 100644 --- a/bin/gzip/util.c +++ b/bin/gzip/util.c @@ -4,21 +4,21 @@ * terms of the GNU General Public License, see the file COPYING. */ +#include "stddef.h" // for NULL + +#include // for fprintf, stderr, EOF, perror, FILE +#include // for strspn, strcpy, strcspn, strlen, strrchr #ifdef RCSID static char rcsid[] = "$Id: util.c,v 1.1 2002/08/18 00:59:21 hpa Exp $"; #endif -#include -#include -#include - -#include "tailor.h" - -#include -#include -#include +#include "gzip.h" // for insize, outcnt, ulg, abort_gzip, bytes_out, voidp +#include "tailor.h" // for PATH_SEP, casemap -#include "gzip.h" +#include // for tolower +#include // for errno +#include // for calloc, free, getenv, malloc +#include // for read, write extern ulg crc_32_tab[]; /* crc table, defined below */ -- cgit v1.2.3