diff src/window.c @ 21514:fa9ff387d260

Fix -Wimplicit warnings.
author Andreas Schwab <schwab@suse.de>
date Tue, 14 Apr 1998 12:25:56 +0000
parents be147fbd56f1
children b7df83bf15ff
line wrap: on
line diff
--- a/src/window.c	Tue Apr 14 10:56:46 1998 +0000
+++ b/src/window.c	Tue Apr 14 12:25:56 1998 +0000
@@ -30,6 +30,10 @@
 #include "disptab.h"
 #include "keyboard.h"
 #include "blockinput.h"
+#include "dispextern.h"
+#ifdef HAVE_WINDOW_SYSTEM
+#include "xterm.h"
+#endif
 
 Lisp_Object Qwindowp, Qwindow_live_p;
 
@@ -723,7 +727,7 @@
 
 /* Record info on buffer window w is displaying
    when it is about to cease to display that buffer.  */
-static
+static void
 unshow_buffer (w)
      register struct window *w;
 {
@@ -767,7 +771,7 @@
 }
 
 /* Put replacement into the window structure in place of old. */
-static
+static void
 replace_window (old, replacement)
      Lisp_Object old, replacement;
 {
@@ -2365,7 +2369,7 @@
     }
 }
 
-static
+static void
 make_dummy_parent (window)
      Lisp_Object window;
 {
@@ -3799,6 +3803,7 @@
   return Qnil;
 }
 
+void
 init_window_once ()
 {
   selected_frame = make_terminal_frame ();
@@ -3810,6 +3815,7 @@
   window_initialized = 1;
 }
 
+void
 syms_of_window ()
 {
   staticpro (&Qwindow_configuration_change_hook);
@@ -4029,6 +4035,7 @@
   defsubr (&Scompare_window_configurations);
 }
 
+void
 keys_of_window ()
 {
   initial_define_key (control_x_map, '1', "delete-other-windows");