USG_PG3/usr/source/lexcl/unput.c

unput(c)
	{
	extern int cin, yylineno;
	if (c== '\n') yylineno--;
	return(ungetc(c,cin));
	}