commit | 43123e77c0bea1f044074f0e1da609d7ed1b74bc | [log] [tgz] |
---|---|---|
author | Yong Cong Sin <ycsin@meta.com> | Sat Jul 29 12:23:40 2023 +0800 |
committer | Chris Friedt <chrisfriedt@gmail.com> | Fri Aug 04 15:54:18 2023 -0400 |
tree | dd17ce9bde5fd958fd0fa7b7230b8468957296cb | |
parent | 009815e985db5e19b4a91413d2d9da9b265a0c2a [diff] |
posix: signal: extend strsignal buf to cover entire INT range extends the char buffer in the strsignal function to cover the entire range of `int` Had to use `-INT_MAX` as the compiler resolves ``` STRINGIFY(INT_MIN) ``` to: ``` (-2147483647 - 1) ``` instead of: ``` -2147483648 ``` Signed-off-by: Yong Cong Sin <ycsin@meta.com>