patch 7.4.1225
Problem:    Still a few old style function declarations.
Solution:   Make them new style. (Hirohito Higashi)
diff --git a/src/ex_cmds2.c b/src/ex_cmds2.c
index 2651770..98b8c8f 100644
--- a/src/ex_cmds2.c
+++ b/src/ex_cmds2.c
@@ -3627,10 +3627,7 @@
  * At least CodeWarrior 9 needed this code.
  */
     char *
-fgets_cr(s, n, stream)
-    char	*s;
-    int		n;
-    FILE	*stream;
+fgets_cr(char *s, int n, FILE *stream)
 {
     int	c = 0;
     int char_read = 0;