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
/
x1.cc
blob
7ec0cf1840529dcbc411f7fcc6d16054b3a66f48
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
}