Files
clang-p2996/libc/utils/testutils/ExecuteFunctionUnix.cpp
Alex Brachet c623a6865f [libc] Fix warning in ExecuteFunctionUnix.cpp
WIFEXITED and friends expect an `int *` but these methods
were marked `const` so they instead got a `const int *`.
This macros aren't actually modifying their argument, but
we were never using these functions on an immutable
`ProcessStatus` type anyway.
2023-01-25 16:51:56 +00:00

2.3 KiB