pdp11v/usr/src/cmd/link.c

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

/*	@(#)link.c	1.1	*/
main(argc, argv) char *argv[]; {
	if(argc!=3) {
		write(2, "Usage: /etc/link from to\n", 25);
		exit(1);
	}
	exit((link(argv[1], argv[2])==0)? 0: 2);
}