mirror of
https://github.com/GrapheneOS/hardened_malloc.git
synced 2025-04-20 14:30:20 +02:00
7 lines
104 B
C
7 lines
104 B
C
#include <stdlib.h>
|
|
|
|
__attribute__((optimize(0)))
|
|
int main(void) {
|
|
free((void *)1);
|
|
return 0;
|
|
}
|