]> git.ipfire.org Git - thirdparty/gcc.git/blob - libmudflap/testsuite/libmudflap.c/pass11-frag.c
Daily bump.
[thirdparty/gcc.git] / libmudflap / testsuite / libmudflap.c / pass11-frag.c
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <string.h>
4 int main ()
5 {
6 int i = 10;
7 char *x = (char *) malloc (i * sizeof (char));
8
9 while (--i)
10 {
11 ++x;
12 *x = 0;
13 }
14 return 0;
15 }