summaryrefslogtreecommitdiff
path: root/tests/struct_return.c
blob: 3d985748ef07731b0bd0a091c3a3845996dd0984 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
struct foo {
  int xyz1;
  int xyz2;
  int xyz3;
  int xyz4;
  int xyz5;
  int xyz6;
  int xyz7;
  int xyz8;
};

extern struct foo baz(int bar);

struct foo baz(int bar) {
  return (struct foo){1};
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback