hardened_malloc/test/invalid_malloc_object_size_small.c
jvoisin b72661ed51 Clean a bit the includes up
This marginally increases the portability of hardened_malloc,
eg. on OSX.
2022-02-07 12:00:24 +01:00

15 lines
244 B
C

#include <stdlib.h>
#include "test_util.h"
size_t malloc_object_size(void *ptr);
OPTNONE int main(void) {
char *p = malloc(16);
if (!p) {
return 1;
}
char *q = p + 4096 * 4;
malloc_object_size(q);
return 0;
}