• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <string.h>
4 #include <unistd.h>
5 
main(void)6 int main(void)
7 {
8     void *p = malloc(128);
9     printf("allocating 128 bytes of memory\n");
10     while (1)
11     {
12 	memset(p, 0, 128);
13     }
14     return 0;
15 }
16 
17 
18 
19