/*#* large_image.c */ /*#** Change history 04 May 14 Initial creation */ #include #include /* Make this image large, to chew up a good bit of RAM/swap */ char buf[100 * 1000 * 1000]; int main(int argc, char *argv[]) { sleep(30); exit(EXIT_SUCCESS); }