summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.base/cu-decl-2.c
blob: 4650325135519fcaf6e5f537ef3d955e7928fa0a (plain)
1
2
3
4
5
6
7
8
9
10
struct foo {
    int x, y;
};

struct foo*
get_foo()
{
    static struct foo f = { 6, 7 };
    return &f;
}