V10/cmd/man/man.c

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

#include <sys/types.h>
#include <sys/stat.h>
#include <time.h>
struct stat buf;
struct tm *tm;
struct tm *localtime();

main(argc,argv)
char **argv;
{
	if(argc<=1)
		return(0);
	if(stat(argv[1],&buf)==-1)
		return(0);
	tm = localtime(&buf.st_mtime);
	printf("-rd%d -rm%d -ry%d\n",
		tm->tm_mday,tm->tm_mon,tm->tm_year);
	return(0);
}