V7/usr/src/libc/gen/isatty.c

Find at most related files.
including files from this version of Unix.

/*
 * Returns 1 iff file is a tty
 */

#include <sgtty.h>

isatty(f)
{
	struct sgttyb ttyb;

	if (gtty(f, &ttyb) < 0)
		return(0);
	return(1);
}