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
/
reread2.c
blob
fd9f7b7ad64be423a721543b10ab8a6814ffa0a8
1
/* pr 13484 */
2
3
#include <stdio.h>
4
5
int
x
;
6
7
void
foo
()
8
{
9
x
++;
10
printf
(
"This is foo
\n
"
);
11
}
12
13
int
main
()
14
{
15
#ifdef usestubs
16
set_debug_traps
();
17
breakpoint
();
18
#endif
19
foo
();
20
return
0
;
21
}