#include <stdio.h>
#include <stdlib.h>
void leak(void) {
void* m;
m = malloc(1);
return;
}
int main(void) {
while(1) leak();
return 0;
}
Thoughts leaked from a man's mind, who is within this "Expanding Universe" of data trying to run in the direction of knowledge and wisdom in any sense or context.
#include <stdio.h>
#include <stdlib.h>
void leak(void) {
void* m;
m = malloc(1);
return;
}
int main(void) {
while(1) leak();
return 0;
}