gdb-best-friend/examples/reverse/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

23 lines
179 B
C

#include "2.h"
void
foo (int v)
{
int a = 0;
a = 10 + 20;
a += v;
bar (&a);
bar (0);
a = 0;
}
int
main (int argc, char *argv[])
{
initialize ();
return 0;
}