Files
mem/tests/03_malloc_softfail.c

12 lines
229 B
C
Raw Normal View History

2025-10-18 11:22:09 -05: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;
}