1#include <stdlib.h>
2#include <unistd.h>
3
4int main() {
5	malloc(127 * 1024 * 1024L * 1024L * 1024L); sleep(5000);
6	return EXIT_SUCCESS;
7}
8