3 Fix symbol name conflict with POSIX getline().
5 --- sformat/io.c Sat Jun 16 04:48:53 2012 -0400
6 +++ sformat/io.c Sat Jun 16 04:50:37 2012 -0400
8 (*prt)(s, *lp, mini, maxi, dp);
11 - if (getline(line, 80) == EOF)
12 + if (get_line(line, 80) == EOF)
15 linep = skipwhite(line);
17 printf("%r", form, args);
20 - if (getline(okbuf, sizeof(okbuf)) == EOF)
21 + if (get_line(okbuf, sizeof(okbuf)) == EOF)
23 if (okbuf[0] == '?') {
24 printf("Enter 'y', 'Y', 'yes' or 'YES' if you agree with the previous asked question.\n");
26 printf("%s [%s]:", s, csp->s_name);
29 - if (getline(line, 80) == EOF)
30 + if (get_line(line, 80) == EOF)
33 linep = skipwhite(line);