[comp.os.minix] Bug in putc

bishop@ecsvax.UUCP (Alan Bishop) (05/09/87)

Problem: putc does not return the character passed to it.

Fix: in putc.c (from lib/libsrc.a) change the line which reads
	return(0);
to
	return(ch & CMASK);

Seems to work.

alan