Files
mem/tests/03_malloc_softfail.c

12 lines
229 B
C
Raw Normal View History

2026-01-17 12:17:57 -06:00
#define DEBUG
#include <stdlib.h>
#include <stdint.h>
#include "../include/mem.h"
int main(void){
size_t nbytes = MEM_GB(1024);
void *ptr = ALLOC(SOFT_FAIL, nbytes);
ASSERTED(ptr == NULL);
return EXIT_SUCCESS;
}