diff options
Diffstat (limited to 'bin/gzip/gzip.h')
| -rw-r--r-- | bin/gzip/gzip.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/gzip/gzip.h b/bin/gzip/gzip.h index e2dcddfc..6e01f429 100644 --- a/bin/gzip/gzip.h +++ b/bin/gzip/gzip.h @@ -19,9 +19,9 @@ typedef char *voidp; /* I don't like nested includes, but the string and io functions are used * too often */ -#include <stdio.h> -#include <string.h> -#include <time.h> +#include <stdio.h> // for fprintf, FILE +#include <time.h> // for time_t + #define memzero(s, n) memset((voidp)(s), 0, (n)) #define local static |
