diff options
author | Andreas Schwab <schwab@suse.de> | 1998-04-14 12:25:56 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 1998-04-14 12:25:56 +0000 |
commit | dfcf069d565c347abf3cb7cec80e6ed8432037ba (patch) | |
tree | cd9620f10084ffa69d7d6ae26284ffd69d4c07a5 /src/keymap.c | |
parent | 0f94f94657ad7a6a68e64c612285a5e06152def2 (diff) | |
download | emacs-dfcf069d565c347abf3cb7cec80e6ed8432037ba.tar.gz |
Fix -Wimplicit warnings.
Diffstat (limited to 'src/keymap.c')
-rw-r--r-- | src/keymap.c | 6 |
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; |