Centralise fault handling

This should be done as all platforms essentially did the same anyway and there was nothing platform specific.
This commit is contained in:
Benny Baumann
2020-10-03 17:53:15 +02:00
committed by cgzones
parent b47bc667a2
commit 601480003f
18 changed files with 115 additions and 335 deletions

View File

@ -14,7 +14,7 @@
void fail() {
curs_set(1);
endwin();
err(1, NULL);
abort();
}
void* xMalloc(size_t size) {