Initial commit

This commit is contained in:
2026-02-15 11:54:20 -06:00
commit 7c4f56c717
11 changed files with 478 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#define DEBUG
#include <stdlib.h>
#include <stdint.h>
#include <assert.h>
#include "../include/mem.h"
int main(void){
size_t nbytes = MEM_GB(1024);
void *ptr = ALLOC(SOFT_FAIL, nbytes);
assert(ptr == NULL);
return EXIT_SUCCESS;
}