=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/make/lowparse.c,v retrieving revision 1.4 retrieving revision 1.5 diff -c -r1.4 -r1.5 *** src/usr.bin/make/lowparse.c 2000/09/14 13:32:07 1.4 --- src/usr.bin/make/lowparse.c 2000/11/24 14:27:19 1.5 *************** *** 1,4 **** ! /* $OpenBSD: lowparse.c,v 1.4 2000/09/14 13:32:07 espie Exp $ */ /* low-level parsing functions. */ --- 1,4 ---- ! /* $OpenBSD: lowparse.c,v 1.5 2000/11/24 14:27:19 espie Exp $ */ /* low-level parsing functions. */ *************** *** 165,170 **** --- 165,171 ---- IFile *ifile; ifile = emalloc(sizeof(*ifile)); + /* No malloc, name is always taken from an existing ifile */ ifile->fname = name; ifile->F = NULL; /* Strings are used from for loops... */ *************** *** 240,246 **** } ! int newline() { size_t len; --- 241,248 ---- } ! /* guts for ParseReadc. Grab a new line off fgetln when we hit "\n" */ ! static int newline() { size_t len;