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
/
vforked-prog.c
blob
27504db528a8fa783c9991f8c53e3f291119423b
1
#include <stdio.h>
2
3
#ifdef PROTOTYPES
4
int
main
(
void
)
5
#else
6
main
()
7
#endif
8
{
9
printf
(
"Hello from vforked-prog...
\n
"
);
10
return
0
;
11
}