initialization of the "process" variable, this really should be
[unix-history] / usr / src / usr.bin / pascal / libpc / READLN.c
/* Copyright (c) 1979 Regents of the University of California */
static char sccsid[] = "@(#)READLN.c 1.4 %G%";
#include "h00vars.h"
READLN(curfile)
register struct iorec *curfile;
{
do {
IOSYNC(curfile);
curfile->funit |= SYNC;
} while ((curfile->funit & EOLN) == 0);
}