Implemented malloc, abort, exit

This commit is contained in:
Max Wash
2020-04-17 11:24:05 +01:00
parent bf4e733688
commit 076ace9956
8 changed files with 6317 additions and 4 deletions

View File

@@ -0,0 +1,8 @@
#include <stdlib.h>
#include <stdio.h>
_Noreturn void abort(void)
{
fprintf(stderr, "Aborted.\n");
exit(-1);
}