pdp11v/usr/src/cmd/unlink.c

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

/*	@(#)unlink.c	1.1	*/
main(argc, argv) char *argv[]; {
	if(argc!=2) {
		write(2, "Usage: /etc/unlink name\n", 24);
		exit(1);
	}
	unlink(argv[1]);
	exit(0);
}