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
/
reread1.c
blob
ae9801047d4ad55aa9a8b8cb7f25fa4dbd0d4c34
1
/* pr 13484 */
2
3
#include <stdio.h>
4
5
int
x
;
6
7
void
bar
()
8
{
9
x
--;
10
}
11
12
void
foo
()
13
{
14
x
++;
15
}
16
17
int
main
()
18
{
19
#ifdef usestubs
20
set_debug_traps
();
21
breakpoint
();
22
#endif
23
foo
();
24
bar
();
25
return
0
;
26
}