summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2004-05-17 13:17:45 +0000
committerJim Meyering <jim@meyering.net>2004-05-17 13:17:45 +0000
commit37dfecb6e7d404f7b4e0a5186e85e0b76af6b662 (patch)
tree5be52cda28f8d5e21afd110f48cc9354b162efaf /lib
parent7f814a5e96818df9868290f21713c58fdd0c07ff (diff)
downloadcoreutils-37dfecb6e7d404f7b4e0a5186e85e0b76af6b662.tar.xz
Sync with gnulib.
Diffstat (limited to 'lib')
-rw-r--r--lib/getline.c32
1 files changed, 9 insertions, 23 deletions
diff --git a/lib/getline.c b/lib/getline.c
index 896b6bbd8..746d70887 100644
--- a/lib/getline.c
+++ b/lib/getline.c
@@ -1,7 +1,7 @@
/* getline.c -- Replacement for GNU C library function getline
- Copyright (C) 1993, 1996, 1997, 1998, 2000, 2003 Free Software
- Foundation, Inc.
+ Copyright (C) 1993, 1996, 1997, 1998, 2000, 2003, 2004 Free
+ Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -23,36 +23,22 @@
# include <config.h>
#endif
-/* Specification. */
#include "getline.h"
-#include <stddef.h>
-#include <stdio.h>
-
-/* Get ssize_t. */
-#include <sys/types.h>
-
-#if defined __GNU_LIBRARY__ && HAVE_GETDELIM
-
-ssize_t
-getline (char **lineptr, size_t *linesize, FILE *stream)
-{
- return getdelim (lineptr, linesize, '\n', stream);
-}
-
-#else /* ! have getdelim */
+#if ! (defined __GNU_LIBRARY__ && HAVE_GETDELIM)
# include "getndelim2.h"
ssize_t
-getline (char **lineptr, size_t *linesize, FILE *stream)
+getdelim (char **lineptr, size_t *linesize, int delimiter, FILE *stream)
{
- return getndelim2 (lineptr, linesize, (size_t)(-1), stream, '\n', 0, 0);
+ return getndelim2 (lineptr, linesize, 0, GETNLINE_NO_LIMIT, delimiter, EOF,
+ stream);
}
+#endif
ssize_t
-getdelim (char **lineptr, size_t *linesize, int delimiter, FILE *stream)
+getline (char **lineptr, size_t *linesize, FILE *stream)
{
- return getndelim2 (lineptr, linesize, (size_t)(-1), stream, delimiter, 0, 0);
+ return getdelim (lineptr, linesize, '\n', stream);
}
-#endif