mirror of
https://github.com/GrapheneOS/hardened_malloc.git
synced 2024-10-01 01:36:01 -04:00
9 lines
107 B
C
9 lines
107 B
C
#include <stdlib.h>
|
|
|
|
#include "test_util.h"
|
|
|
|
OPTNONE int main(void) {
|
|
free((void *)1);
|
|
return 0;
|
|
}
|