pdp11v/usr/src/cmd/logname.c

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

char xxxsccsid[] = "@(#)logname.c	1.3";

#include <stdio.h>
main() {
	char *name, *cuserid();

	name = cuserid((char *)NULL);
	if (name == NULL)
		return (1);
	(void) puts (name);
	return (0);
}