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
/
args.c
blob
d564120a6074278b2af1e5a07d248079090de644
1
#include <stdio.h>
2
3
int
4
main
(
int
argc
,
char
**
argv
)
5
{
6
int
i
=
0
;
7
printf
(
"%d
\n
"
,
argc
);
8
while
(
i
<
argc
)
9
printf
(
"%s
\n
"
,
argv
[
i
++]);
10
11
return
0
;
12
}