X-Git-Url: https://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fgetnline.c;h=3fba9dc50d43dc1e8904d94a5ffba78d58ed39c6;hb=e1baaf8d7c7da5c45041f3ecaf227dfd03c01891;hp=c53177b03bb504ebbed06246a17c2f2a344dc377;hpb=57fdfd3f8ec62b105c53bcdf6f127c35c7fe7391;p=gnulib.git diff --git a/lib/getnline.c b/lib/getnline.c index c53177b03..3fba9dc50 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-2012 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); }