summaryrefslogtreecommitdiff
path: root/src/keymap.c
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@suse.de>1998-04-14 12:25:56 +0000
committerAndreas Schwab <schwab@suse.de>1998-04-14 12:25:56 +0000
commit127fe5cf2e589b6e57928836773d096e7d822295 (patch)
tree3709c1849a5915a4b7b4ee9733244ce554441055 /src/keymap.c
parentd9569e3eccc33dfcec541ded7871629b454fd936 (diff)
downloademacs-127fe5cf2e589b6e57928836773d096e7d822295.tar.gz
Fix -Wimplicit warnings.
Diffstat (limited to 'src/keymap.c')
-rw-r--r--src/keymap.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/keymap.c b/src/keymap.c
index c0a0f21a126..8739326a733 100644
--- a/src/keymap.c
+++ b/src/keymap.c
@@ -21,6 +21,9 @@ Boston, MA 02111-1307, USA. */
#include <config.h>
#include <stdio.h>
+#ifdef STDC_HEADERS
+#include <stdlib.h>
+#endif
#undef NULL
#include "lisp.h"
#include "commands.h"
@@ -102,7 +105,6 @@ static Lisp_Object define_as_prefix ();
static Lisp_Object describe_buffer_bindings ();
static void describe_command (), describe_translation ();
static void describe_map ();
-Lisp_Object Fcopy_keymap ();
/* Keymap object support - constructors and predicates. */
@@ -3168,6 +3170,7 @@ Return list of symbols found.")
return apropos_accumulate;
}
+void
syms_of_keymap ()
{
Lisp_Object tem;
@@ -3305,6 +3308,7 @@ and applies even for keys that have ordinary bindings.");
defsubr (&Sapropos_internal);
}
+void
keys_of_keymap ()
{
Lisp_Object tem;