diff options
Diffstat (limited to 'news/nn/files/patch-global.c')
-rw-r--r-- | news/nn/files/patch-global.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/news/nn/files/patch-global.c b/news/nn/files/patch-global.c new file mode 100644 index 000000000000..6e15735dd132 --- /dev/null +++ b/news/nn/files/patch-global.c @@ -0,0 +1,17 @@ +--- global.c.orig 2005-04-19 22:26:50 UTC ++++ global.c +@@ -1307,12 +1307,12 @@ fgetstr(FILE * f) + } + + /* +- * getline - gets a line from stdin ++ * get_line - gets a line from stdin + * returns the length of the line + */ + + int +-getline(char *line, int max) ++get_line(char *line, int max) + { + if (fgets(line, max, stdin) == NULL) + return 0; |