Google
 

Trailing-Edge - PDP-10 Archives - SRI_NIC_PERM_FS_1_19910112 - c/lib5/test/techo.c
There are 2 other files named techo.c in the archive. Click here to see a list.
#include <stdio.h>
main(argc,argv)
char *argv[];
{	register int i;
	register char *cp;

	for(i = 0; i < argc; ++i)
		printf(" \"%s\"", argv[i]);

}