diff src/insdel.c @ 21514:fa9ff387d260

Fix -Wimplicit warnings.
author Andreas Schwab <schwab@suse.de>
date Tue, 14 Apr 1998 12:25:56 +0000
parents 6fe4f59fab8c
children fff9425b9230
line wrap: on
line diff
--- a/src/insdel.c	Tue Apr 14 10:56:46 1998 +0000
+++ b/src/insdel.c	Tue Apr 14 12:25:56 1998 +0000
@@ -26,6 +26,7 @@
 #include "charset.h"
 #include "window.h"
 #include "blockinput.h"
+#include "region-cache.h"
 
 #ifndef NULL
 #define NULL 0
@@ -777,7 +778,7 @@
 void
 insert (string, nbytes)
      register unsigned char *string;
-     register nbytes;
+     register int nbytes;
 {
   if (nbytes > 0)
     {
@@ -792,7 +793,7 @@
 void
 insert_and_inherit (string, nbytes)
      register unsigned char *string;
-     register nbytes;
+     register int nbytes;
 {
   if (nbytes > 0)
     {
@@ -2441,6 +2442,7 @@
   return unbind_to (count, val);
 }
 
+void
 syms_of_insdel ()
 {
   staticpro (&combine_after_change_list);