remove #if 0 part

This commit is contained in:
jdolecek 2001-01-12 19:24:42 +00:00
parent ae76c71d75
commit 43de9457c0
1 changed files with 2 additions and 11 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: files.c,v 1.8 2001/01/11 14:05:24 jdolecek Exp $ */ /* $NetBSD: files.c,v 1.9 2001/01/12 19:24:42 jdolecek Exp $ */
/*- /*-
* Copyright (c) 1993 * Copyright (c) 1993
@ -40,7 +40,7 @@
#include "fsort.h" #include "fsort.h"
#ifndef lint #ifndef lint
__RCSID("$NetBSD: files.c,v 1.8 2001/01/11 14:05:24 jdolecek Exp $"); __RCSID("$NetBSD: files.c,v 1.9 2001/01/12 19:24:42 jdolecek Exp $");
__SCCSID("@(#)files.c 8.1 (Berkeley) 6/6/93"); __SCCSID("@(#)files.c 8.1 (Berkeley) 6/6/93");
#endif /* not lint */ #endif /* not lint */
@ -288,15 +288,6 @@ seq(fp, line, key)
pos = linebuf + (pos - buf); pos = linebuf + (pos - buf);
line->data = buf = (char *)linebuf; line->data = buf = (char *)linebuf;
continue; continue;
#if 0
line->size = DEFLLEN;
*--pos = REC_D;
while ((c = getc(fp)) != EOF) {
if (c == REC_D)
return (BUFFEND);
}
break;
#endif
} }
} }
if (pos != buf) { if (pos != buf) {