Upload Tizen:Base source
[external/gdb.git] / gdb / testsuite / gdb.hp / gdb.objdbg / objdbg02 / x1.cc
1 #include <stdio.h>
2
3 extern void foo1();
4 extern void foo3();
5
6 struct foo_type;
7
8 int main()
9 {
10   struct foo_type *x;
11
12   printf("In main.\n");
13   foo1();
14   foo3();
15   return 0;
16 }