gdb-best-friend/examples/python/caller_is/1.c
Sergio Durigan Junior dd97dffcfb Adding slides in en_US
This commit adds the slides in en_US, and also the examples.
2014-10-16 18:47:50 -04:00

25 lines
175 B
C

static void
foo (void)
{
}
static void
bar (void)
{
foo ();
}
static void
baz (void)
{
foo ();
}
int
main (int argc, char *argv[])
{
baz ();
bar ();
return 0;
}