summaryrefslogtreecommitdiff
path: root/src/util/error.c
blob: 6c028105ac424bd0546c887f3fda76233f9668f8 (plain)
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>
#include <stdlib.h>
#include "error.h"

#include "global.h"

void print_error_nomem() {
  fprintf(stderr, "%s: Kon geen geheugen reserveren!\n", progname);
  exit(1);
}