DEBSOURCES
Skip Quicknav
sources / systemtap / 5.3-2 / testsuite / systemtap.base / cu-decl-2.c
12345678910
struct foo { int x, y; }; struct foo* get_foo() { static struct foo f = { 6, 7 }; return &f; }