UUID stuff from Ryan Raasch
[cegcc.git] / cegcc / src / gcc-4.3.2 / libmudflap / testsuite / libmudflap.c / pass14-frag.c
blob264564329798ccbe3df615d39b487da8ec5210ad
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <string.h>
4 int main ()
6 struct a {
7 int x;
8 int y;
9 char z;
12 struct a k;
13 struct a *p;
15 p = &k;
17 p->z = 'q';
19 return 0;