hardened_malloc/test/simple-memory-corruption/uninitialized_malloc_usable_size.c

9 lines
124 B
C

#include <malloc.h>
#include "../test_util.h"
OPTNONE int main(void) {
malloc_usable_size((void *)1);
return 0;
}