summaryrefslogtreecommitdiff
path: root/lib/libc/stdio
diff options
context:
space:
mode:
authorjtc <jtc@NetBSD.org>1995-02-02 00:57:36 +0000
committerjtc <jtc@NetBSD.org>1995-02-02 00:57:36 +0000
commit7cd7db23c2ddc090c2d42e8b41a0276a2e02cb7e (patch)
tree324f22fc2347374c1476cce63d626df4bfda7a47 /lib/libc/stdio
parentc7431b8a3ce6b20b22da1c81d3dd20b2e59df0e7 (diff)
imported from 44lite
Diffstat (limited to 'lib/libc/stdio')
-rw-r--r--lib/libc/stdio/fgetln.c6
1 files changed, 2 insertions, 4 deletions
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 <stdio.h>
@@ -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.