// Copyright (c) 2023, Marvin Borner // SPDX-License-Identifier: MIT #include #include #include #include #include struct term *new_term(term_type type) { struct term *term = malloc(sizeof(*term)); if (!term) fatal("Out of memory!\n"); term->type = type; return term; }