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.base
/
opaque1.c
blob
c34f7aaaae12766b6061107ab531d4395227ed2e
1
struct
foo
{
2
int
a
;
3
int
b
;
4
}
afoo
= {
1
,
2
};
5
6
struct
foo
*
getfoo
()
7
{
8
return
(&
afoo
);
9
}
10
11
#ifdef PROTOTYPES
12
void
putfoo
(
struct
foo
*
foop
)
13
#else
14
void
putfoo
(
foop
)
15
struct
foo
*
foop
;
16
#endif
17
{
18
}