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
/
twice.c
blob
09eb2ddf5a23d92c502c999a89bbd5d8470d9b6a
1
#include <stdio.h>
2
int
nothing
()
3
4
{
5
int
x
=
3
;
6
return
x
;
7
}
8
9
10
int
main
()
11
12
{
13
int
y
;
14
#ifdef usestubs
15
set_debug_traps
();
16
breakpoint
();
17
#endif
18
y
=
nothing
() ;
19
printf
(
"hello
\n
"
) ;
20
return
0
;
21
}