X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fgetnline.c;h=6e0cca1f94d17d9bca1b5d882862dcee997b0669;hb=8f3aa1fee051bc5091d5f9b207609c03cf023894;hp=c53177b03bb504ebbed06246a17c2f2a344dc377;hpb=57fdfd3f8ec62b105c53bcdf6f127c35c7fe7391;p=gnulib.git diff --git a/lib/getnline.c b/lib/getnline.c index c53177b03..6e0cca1f9 100644 --- a/lib/getnline.c +++ b/lib/getnline.c @@ -1,6 +1,6 @@ /* getnline - Read a line from a stream, with bounded memory allocation. - Copyright (C) 2003, 2004, 2006 Free Software Foundation, Inc. + Copyright (C) 2003, 2004, 2006, 2009, 2010 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 @@ -24,7 +24,7 @@ ssize_t getndelim (char **lineptr, size_t *linesize, size_t nmax, - int delimiter, FILE *stream) + int delimiter, FILE *stream) { return getndelim2 (lineptr, linesize, 0, nmax, delimiter, EOF, stream); }