15 lines
321 B
C
15 lines
321 B
C
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include "util.h"
|
|
|
|
COLD noreturn void fatal_error(const char *s) {
|
|
const char *prefix = "fatal allocator error: ";
|
|
write(STDERR_FILENO, prefix, strlen(prefix));
|
|
write(STDERR_FILENO, s, strlen(s));
|
|
write(STDERR_FILENO, "\n", 1);
|
|
abort();
|
|
}
|