Sign in
third-party-mirror
/
proot
/
d51ef161f29ccabd60e4b8d56aa3c419e9eefffc
/
.
/
5.1.0
/
tests
/
echo.c
blob: 2a2ae6bc5b3c23123559e25f1758abb5541b2f0b [
file
]
#include
<stdio.h>
int
main
(
int
argc
,
char
**
argv
)
{
int
i
;
for
(
i
=
1
;
i
<
argc
;
i
++)
puts
(
argv
[
i
]);
return
0
;
}