--- cvs-1.11.23/lib/getline.h 2005-04-05 05:46:05.000000000 +0900 +++ build/lib/getline.h 2011-01-27 23:00:33.000000000 +0900 @@ -11,8 +11,10 @@ #define GETLINE_NO_LIMIT -1 +/* int getline __PROTO ((char **_lineptr, size_t *_n, FILE *_stream)); +*/ int getline_safe __PROTO ((char **_lineptr, size_t *_n, FILE *_stream, int limit)); --- cvs-1.11.23/lib/getline.c 2005-04-05 05:46:05.000000000 +0900 +++ build/lib/getline.c 2011-01-27 23:01:15.000000000 +0900 @@ -154,6 +154,7 @@ return ret; } +/* int getline (lineptr, n, stream) char **lineptr; @@ -162,6 +163,7 @@ { return getstr (lineptr, n, stream, '\n', 0, GETLINE_NO_LIMIT); } +*/ int getline_safe (lineptr, n, stream, limit)