| 656 | /* Print to stderr in such a way as to avoid memory allocation. */ |
| 657 | JEMALLOC_FORMAT_PRINTF(1, 2) |
| 658 | void |
| 659 | malloc_printf(const char *format, ...) { |
| 660 | va_list ap; |
| 661 | |
| 662 | va_start(ap, format); |
| 663 | malloc_vcprintf(NULL, NULL, format, ap); |
| 664 | va_end(ap); |
| 665 | } |
| 666 | |
| 667 | /* |
| 668 | * Restore normal assertion macros, in order to make it possible to compile all |
no outgoing calls