[libc-commits] [libc] [libc] Fix missing UINTMAX_WIDTH (PR #87092)

Nick Desaulniers via libc-commits libc-commits at lists.llvm.org
Fri Mar 29 10:30:46 PDT 2024


https://github.com/nickdesaulniers approved this pull request.

Could also do something like:
```
#ifndef UINTMAX_WIDTH
#define UINTMAX_WIDTH sizeof(uintmax_t) * CHAR_BIT
#endif
```
But happy to take this to unbreak builds.

https://github.com/llvm/llvm-project/pull/87092


More information about the libc-commits mailing list