From 7cd7db23c2ddc090c2d42e8b41a0276a2e02cb7e Mon Sep 17 00:00:00 2001 From: jtc Date: Thu, 2 Feb 1995 00:57:36 +0000 Subject: imported from 44lite --- lib/libc/stdio/fgetln.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'lib/libc/stdio') diff --git a/lib/libc/stdio/fgetln.c b/lib/libc/stdio/fgetln.c index b0ff0a4343c..ec81a2dafc0 100644 --- a/lib/libc/stdio/fgetln.c +++ b/lib/libc/stdio/fgetln.c @@ -35,8 +35,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -/* from: static char sccsid[] = "@(#)fgetline.c 8.1 (Berkeley) 6/4/93"; */ -static char *rcsid = "$Id: fgetln.c,v 1.1 1994/01/04 05:13:18 cgd Exp $"; +static char sccsid[] = "@(#)fgetln.c 8.2 (Berkeley) 1/2/94"; #endif /* LIBC_SCCS and not lint */ #include @@ -51,7 +50,6 @@ static char *rcsid = "$Id: fgetln.c,v 1.1 1994/01/04 05:13:18 cgd Exp $"; * so we add 1 here. #endif */ -int __slbexpand(fp, newsize) FILE *fp; size_t newsize; @@ -72,7 +70,7 @@ __slbexpand(fp, newsize) /* * Get an input line. The returned pointer often (but not always) - * points into a stdio buffer. Fgetline does not alter the text of + * points into a stdio buffer. Fgetln does not alter the text of * the returned line (which is thus not a C string because it will * not necessarily end with '\0'), but does allow callers to modify * it if they wish. Thus, we set __SMOD in case the caller does. -- cgit