1 --- getline.3.orig 2009-12-15 15:37:17.000000000 -0800
2 +++ getline.3 2009-12-15 15:37:57.000000000 -0800
7 -.Fd "#define _WITH_GETLINE"
10 .Fn getdelim "char ** restrict linep" "size_t * restrict linecapp" "int delimiter" " FILE * restrict stream"
11 @@ -95,34 +94,6 @@ ssize_t linelen;
12 while ((linelen = getline(&line, &linecap, fp)) > 0)
13 fwrite(line, linelen, 1, stdout);
16 -Many application writers used the name
20 -function was introduced in
22 -so a prototype is not provided by default in order to avoid
23 -compatibility problems.
24 -Applications that wish to use the
26 -function described herein should either request a strict
28 -environment by defining the macro
30 -to the value 200809 or greater, or by defining the macro
32 -prior to the inclusion of
34 -For compatibility with GNU libc, defining either
38 -prior to the inclusion of
44 These functions may fail if: