hardened_malloc/test/uninitialized_malloc_usable_size.c

9 lines
121 B
C
Raw Permalink Normal View History

2018-08-24 09:02:00 +00:00
#include <malloc.h>
#include "test_util.h"
OPTNONE int main(void) {
2018-08-24 09:02:00 +00:00
malloc_usable_size((void *)1);
return 0;
}