mirror of
https://github.com/GrapheneOS/hardened_malloc.git
synced 2025-07-02 23:17:10 +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;
|
|
}
|