diff options
Diffstat (limited to 'bin/sh/shell.h')
-rw-r--r-- | bin/sh/shell.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/sh/shell.h b/bin/sh/shell.h index 9bf399f..5f6d0ac 100644 --- a/bin/sh/shell.h +++ b/bin/sh/shell.h @@ -59,6 +59,8 @@ typedef intmax_t arith_t; #define ARITH_FORMAT_STR "%" PRIdMAX #define atoarith_t(arg) strtoimax(arg, NULL, 0) #define strtoarith_t(nptr, endptr, base) strtoimax(nptr, endptr, base) +#define ARITH_MIN INTMAX_MIN +#define ARITH_MAX INTMAX_MAX typedef void *pointer; #define MKINIT /* empty */ |