Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!seismo!mcnc!ecsvax!bishop From: bishop@ecsvax.UUCP (Alan Bishop) Newsgroups: comp.os.minix Subject: Bug in putc Message-ID: <3118@ecsvax.UUCP> Date: Fri, 8-May-87 22:10:20 EDT Article-I.D.: ecsvax.3118 Posted: Fri May 8 22:10:20 1987 Date-Received: Sun, 10-May-87 01:12:54 EDT Reply-To: bishop@ecsvax.UUCP (Alan Bishop) Distribution: world Organization: NCSU (Student) Lines: 10 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