Automatic date update in version.in
[binutils-gdb/blckswan.git] / gdb / testsuite / gdb.python / py-frame.c
blob82db34111bd444c378f5f9c0e9b4049f197ef15d
1 int f2 (int a)
3 return ++a;
6 int f1 (int a, int b)
8 return f2(a) + b;
11 int block (void)
13 int i = 99;
15 double i = 1.1;
16 double f = 2.2;
18 const char *i = "stuff";
19 const char *f = "foo";
20 const char *b = "bar";
21 return 0; /* Block break here. */
26 int main (int argc, char *argv[])
28 block ();
29 return f1 (1, 2);