summaryrefslogtreecommitdiffstats
path: root/testsuite/filter1filter.c
blob: f6125170b66d8a24d33f9dcb1b586f6aaf7414ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "filter1.h"

int bar = 24;
int baz = 22;

struct A foo2 = { 2, &bar, &baz };
static struct A pfoo2 = { 2, &bar, &baz };
struct A *pfoo2p = &pfoo2;

int f2 (void)
{
  return bar + baz;
}