repo.or.cz
/
arla.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
*** empty log message ***
[arla.git]
/
tests
/
echo-n.c
blob
2abb2caa49fd80e69519f329bcfc3cd8770305c7
1
#ifdef HAVE_CONFIG_H
2
#include <config.h>
3
#endif
4
5
#include <stdio.h>
6
7
RCSID
(
"$Id$"
);
8
9
int
10
main
(
int
argc
,
char
**
argv
)
11
{
12
int
i
;
13
for
(
i
=
1
;
i
<
argc
;
i
++) {
14
printf
(
"%s"
,
argv
[
i
]);
15
if
(
argc
>
i
+
1
)
16
printf
(
" "
);
17
}
18
fflush
(
stdout
);
19
return
0
;
20
}