mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-23 16:08:43 +00:00
9 lines
197 B
C
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);
|
|
}
|