diff options
Diffstat (limited to 'src/term.c')
-rw-r--r-- | src/term.c | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -6,14 +6,13 @@ #include <string.h> #include <term.h> +#include <log.h> struct term *new_term(term_type type) { struct term *term = malloc(sizeof(*term)); - if (!term) { - fprintf(stderr, "Out of memory!\n"); - abort(); - } + if (!term) + fatal("Out of memory!\n"); term->type = type; return term; } |