* There's no guarantee which version of strerror_r got linked, * so use overloaded helper function to get correct result. */
| 34 | * so use overloaded helper function to get correct result. |
| 35 | */ |
| 36 | [[maybe_unused]] const char* get_error_string(char* retval, char*) |
| 37 | { |
| 38 | return retval; |
| 39 | } |
| 40 | |
| 41 | [[maybe_unused]] const char* get_error_string(int, char* buffer) |
| 42 | { |