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

17 lines
160 B
C++

#include <stdio.h>
struct foo_type {
int t1;
int t2;
};
static void foo2()
{
printf("In foo2.\n");
}
void foo1()
{
printf("In foo1.\n");
foo2();
}