patch 8.2.3387: compiler warning for non-static function

Problem:    Compiler warning for non-static function.
Solution:   Make the function static. (Dominique Pellé, closes #8816)
diff --git a/src/strings.c b/src/strings.c
index 566f4da..0c9e20d 100644
--- a/src/strings.c
+++ b/src/strings.c
@@ -127,7 +127,7 @@
 /*
  * Return TRUE when 'shell' has "fish" in the tail.
  */
-    int
+    static int
 fish_like_shell(void)
 {
     return (strstr((char *)gettail(p_sh), "fish") != NULL);