repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gdb6
/
gdb
/
testsuite
/
gdb.hp
/
gdb.objdbg
/
objdbg02
/
x2.cc
blob
627f02d2bafd0e010a9e9677b4b9a5ac2847cbbd
1
#include <stdio.h>
2
3
struct
foo_type
{
4
int
t1
;
5
int
t2
;
6
};
7
8
static void
foo2
()
9
{
10
printf
(
"In foo2.
\n
"
);
11
}
12
13
void
foo1
()
14
{
15
printf
(
"In foo1.
\n
"
);
16
foo2
();
17
}