+2019-04-04  Tom Tromey  <tom@tromey.com>
+
+       * parser-defs.h (increase_expout_size): Don't declare.
+       * parse.c (increase_expout_size): Now static.
+
 2019-04-04  Thomas Schwinge  <thomas@codesourcery.com>
 
        * gnu-nat.c (gnu_nat_target::wait): Fix
 
                                           int, int *,
                                           innermost_block_tracker_types);
 
+static void increase_expout_size (struct parser_state *ps, size_t lenelt);
+
+
 /* Documented at it's declaration.  */
 
 void
   return exp_iterate (exp, exp_uses_objfile_iter, objfile);
 }
 
-/* See definition in parser-defs.h.  */
+/* Reallocate the `expout' pointer inside PS so that it can accommodate
+   at least LENELT expression elements.  This function does nothing if
+   there is enough room for the elements.  */
 
-void
+static void
 increase_expout_size (struct parser_state *ps, size_t lenelt)
 {
   if ((ps->expout_ptr + lenelt) >= ps->expout_size)
 
 extern void mark_completion_tag (enum type_code, const char *ptr,
                                 int length);
 
-/* Reallocate the `expout' pointer inside PS so that it can accommodate
-   at least LENELT expression elements.  This function does nothing if
-   there is enough room for the elements.  */
-
-extern void increase_expout_size (struct parser_state *ps, size_t lenelt);
-
 #endif /* PARSER_DEFS_H */