V10/cmd/sdb/ss.c

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

#include <stdio.h>

main(argc, argv)
int argc;
char **argv;
{
	FILE *fp;

	if ((fp = fopen(".", "r")) == NULL)
		perror(".");
	exit(0);
}