diff options
author | Ori Bernstein <ori@eigenstate.org> | 2019-09-06 16:33:11 -0700 |
---|---|---|
committer | Ori Bernstein <ori@eigenstate.org> | 2019-09-06 16:33:11 -0700 |
commit | c09546cceafeaa04b6536e8b31278fd3a30593c2 (patch) | |
tree | 67812ae042a1b39c54b167341b3cb07398d5d185 | |
parent | d1204d9b8085634241bf5655279e54a606406cb1 (diff) | |
download | plan9front-c09546cceafeaa04b6536e8b31278fd3a30593c2.tar.xz |
Add missing UINTsz_MIN defines to ape stdint.h
-rw-r--r-- | sys/include/ape/stdint.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sys/include/ape/stdint.h b/sys/include/ape/stdint.h index 3470981f5..2a5ed9520 100644 --- a/sys/include/ape/stdint.h +++ b/sys/include/ape/stdint.h @@ -20,6 +20,11 @@ typedef _uintptr_t uintptr_t; #define INT32_MIN 0x80000000 #define INT64_MIN 0x8000000000000000LL +#define UINT8_MIN 0 +#define UINT16_MIN 0 +#define UINT32_MIN 0 +#define UINT64_MIN 0 + #define INT8_MAX 0x7f #define INT16_MAX 0x7fff #define INT32_MAX 0x7fffffff |