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
/
pc-fp.c
blob
8c89a0f0b81ac392e5cfeec4d25dfcb0ebed96dc
1
#include <stdio.h>
2
3
void
4
foo
(
int
i
)
5
{
6
i
++;
7
printf
(
"In foo %d
\n
"
,
i
);
8
}
9
10
int
11
main
()
12
{
13
foo
(
1
);
14
}