summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bomb.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/bomb.c b/bomb.c
deleted file mode 100644
index 791e4f9..0000000
--- a/bomb.c
+++ /dev/null
@@ -1,9 +0,0 @@
1#include <stdint.h>
2#include <stdlib.h>
3
4#define SZ 1024ull*1024ull*1024ull*16ull
5int main() {
6 char* ptr = malloc(SZ);
7 for (uint64_t i = 0; i < SZ; i+=4096)
8 ptr[i] = i;
9}