miller/c/dsls/lemon_memory.c
2016-07-13 21:43:55 -04:00

9 lines
197 B
C

#include <stdio.h>
#include <stdlib.h>
#include "lemon_memory.h"
// Report an out-of-memory condition and abort.
void memory_error() {
fprintf(stderr, "Out of memory. Aborting.\n");
exit(1);
}