This commit is contained in:
2026-09-03 07:32:05 +02:00
parent 70b555c774
commit e1ff786464
24 changed files with 1165 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#include "helpers.h"
int main(int argc, char **argv)
{
char *under = malloc(96 KB);
randomize(under, 96 KB);
char *over = malloc(256 KB);
randomize(over, 256 KB);
return interlude();
}