summaryrefslogtreecommitdiffstats
path: root/testsuite/lib021.c
blob: 23ea896dd09ef827acacc284f5089f935b0424e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "lib02.h"

int bar = 26;
int baz = 28;

struct A foo = { 1, &foo, &bar };

int f1 (void)
{
  return 1;
}

int f2 (void)
{
  return f1 () + 1;
}