summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/gzip/gzip.h
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/usr.bin/gzip/gzip.h')
-rw-r--r--gnu/usr.bin/gzip/gzip.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/usr.bin/gzip/gzip.h b/gnu/usr.bin/gzip/gzip.h
index 79b0efd..ee87690 100644
--- a/gnu/usr.bin/gzip/gzip.h
+++ b/gnu/usr.bin/gzip/gzip.h
@@ -202,6 +202,8 @@ extern int test; /* check .z file integrity */
extern int to_stdout; /* output to stdout (-c) */
extern int save_orig_name; /* set if original name must be saved */
+#define MIN(a,b) ((a) <= (b) ? (a) : (b))
+
#define get_byte() (inptr < insize ? inbuf[inptr++] : fill_inbuf(0))
#define try_byte() (inptr < insize ? inbuf[inptr++] : fill_inbuf(1))
OpenPOWER on IntegriCloud