/*- * Copyright (c) 1979 The Regents of the University of California. * All rights reserved. * * %sccs.include.redist.c% */ #ifndef lint static char sccsid[] = "@(#)BUFF.c 1.5 (Berkeley) 04/09/90"; #endif /* not lint */ #include "h00vars.h" BUFF(amount) long amount; { struct iorec *curfile; static char sobuf[BUFSIZ]; curfile = OUTPUT; if (amount == 0) setbuf(ACTFILE(curfile), 0); else if (amount == 2) setbuf(ACTFILE(curfile), sobuf); }