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

int bar = 26;
int baz = 28;

struct A foo1 = { 1, &bar, &baz };
static struct A pfoo1 = { 1, &bar, &baz };
struct A *pfoo1p = &pfoo1;

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