Interdata732/usr/source/cmds/echo.c

Compare this file to the similar file:
Show the results in this format:

main(argc, argv)
char *argv[];
{
	register i;

	for(i=1; i<argc; i++)
		printf("%s ", argv[i]);
	putchar('\n');

	exit(0);
}