mirror of
https://github.com/termux/proot.git
synced 2024-11-11 13:49:26 +00:00
12 lines
122 B
C
12 lines
122 B
C
#include <stdio.h>
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
int i;
|
|
|
|
for (i = 1; i < argc; i++)
|
|
puts(argv[i]);
|
|
|
|
return 0;
|
|
}
|