* Get the next line. We only return lines beginning with '#' since that
* is all this program is ever interested in.
*/
-char *getline(filep)
+char *our_getline(filep)
register struct filepointer *filep;
{
register char *p, /* walking pointer */
register char *line;
register int type;
- while (line = getline(filep)) {
+ while (line = our_getline(filep)) {
switch(type = deftype(line, filep, file_red, file, FALSE)) {
case IF:
case IFFALSE:
register int type;
boolean recfailOK;
- while (line = getline(filep)) {
+ while (line = our_getline(filep)) {
switch(type = deftype(line, filep, file_red, file, TRUE)) {
case IF:
doif: