aboutsummaryrefslogtreecommitdiffstats
path: root/test/CFrontend/2002-04-09-StructRetVal.c
blob: 8ba8bfa4d5d93c756e6eed4e22c2e2f9dd00384c (plain)
1
2
3
4
5
6
7
8
9
10
struct S {
  int i;
  short s1, s2;
};

struct S func_returning_struct(void);

void loop(void) {
  func_returning_struct();
}