blob: cf9f817fe2f1e49e437b09b9dcaee809f39ab63d [file] [log] [blame]
Eric Biederman90089602004-05-28 14:11:54 +00001
2
3struct result {
4 int a, b, c, d;
5};
6
7static struct result main(int a, int b, int c, int d)
8{
9 struct result result;
10 result.a = d + 1;
11 result.b = c + 1;
12 result.c = b + 1;
13 result.d = a + 1;
14
15 return result;
16}