* Wrapper around malloc_message() that avoids the need for * je_malloc_message(...) throughout the code. */
| 93 | * je_malloc_message(...) throughout the code. |
| 94 | */ |
| 95 | void |
| 96 | malloc_write(const char *s) { |
| 97 | if (je_malloc_message != NULL) { |
| 98 | je_malloc_message(NULL, s); |
| 99 | } else { |
| 100 | wrtmessage(NULL, s); |
| 101 | } |
| 102 | } |
| 103 | |
| 104 | /* |
| 105 | * glibc provides a non-standard strerror_r() when _GNU_SOURCE is defined, so |
no test coverage detected