summaryrefslogtreecommitdiff
path: root/gzip.h
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2022-12-25 15:12:20 -0800
committerPaul Eggert <eggert@cs.ucla.edu>2022-12-25 16:13:10 -0800
commitd8425fccd3c0452491faa32aa46efb2d31469e2d (patch)
treedf86f642eda5e7f075df764a0e6d0f35cf8eb11a /gzip.h
parent96cd660ad06675e811505229c029004efe9a3a8f (diff)
downloadgzip-d8425fccd3c0452491faa32aa46efb2d31469e2d.tar.gz
gzip: local → static
* gzip.h (local): Remove. All uses replaced by ‘static’. Previously, the source code was inconsistent about using ‘local’ vs ‘static’ even before the recent changes, and ‘local’ was more trouble than it was worth.
Diffstat (limited to 'gzip.h')
-rw-r--r--gzip.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/gzip.h b/gzip.h
index 668d635..3334cd4 100644
--- a/gzip.h
+++ b/gzip.h
@@ -40,8 +40,6 @@
#include <string.h>
#define memzero(s, n) memset ((voidp)(s), 0, (n))
-#define local static
-
typedef unsigned char uch;
typedef unsigned short ush;
typedef unsigned long ulg;