Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: version B 2.10.3 4.3bsd-beta 6/6/85; site busch.UUCP Path: utzoo!watmath!clyde!burl!ulysses!mhuxr!mhuxn!ihnp4!mgnetp!we53!busch!mte From: mte@busch.UUCP (Moshe Eliovson) Newsgroups: net.sources.bugs Subject: re:floop Message-ID: <450@busch.UUCP> Date: Wed, 10-Jul-85 13:41:31 EDT Article-I.D.: busch.450 Posted: Wed Jul 10 13:41:31 1985 Date-Received: Fri, 12-Jul-85 02:15:23 EDT Organization: Anheuser-Busch Companies - St. Louis Missouri Lines: 21 Keywords: bug fix for other than 4.2 For people without bzero() as a standard library function create a file bzero.c and use the following code: /* Written by Craig Miller Anheuser-Busch, Inc. */ bzero(block, siz) register char *block; register unsigned siz; { while (siz-- > 0) *block++ = 0; } Then add bzero.o to the appropriate lines in the Makefile. By the way, this program is neat! Moshe Eliovson {allegra, ihnp4}!we53!busch!mte