/* Copyright (C) 2014 Ben Kurtovic Released under the terms of the MIT License. See LICENSE for details. */ #include #include #include "errors.h" /* Called after an out-of-memory error. Prints a message and dies. */ void out_of_memory() { printf("Error: couldn't allocate memory.\n"); exit(1); }