diff options
Diffstat (limited to '')
-rw-r--r-- | libtar/libtar.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libtar/libtar.h b/libtar/libtar.h index e3154ae90..d2c4d003c 100644 --- a/libtar/libtar.h +++ b/libtar/libtar.h @@ -289,6 +289,7 @@ int oct_to_int(char *oct); /* integer to string-octal conversion, no NULL */ void int_to_oct_nonull(int num, char *oct, size_t octlen); +#define tar_min(x, y) (x < y ? x : y) /***** wrapper.c **********************************************************/ |