old-cross-binutils/gdb/testsuite/gdb.hp/gdb.objdbg/objdbg02/x1.cc
1999-08-16 19:57:19 +00:00

16 lines
173 B
C++

#include <stdio.h>
extern void foo1();
extern void foo3();
struct foo_type;
int main()
{
struct foo_type *x;
printf("In main.\n");
foo1();
foo3();
return 0;
}