diff options
| author | Andreas Schwab | 1998-04-14 12:25:56 +0000 |
|---|---|---|
| committer | Andreas Schwab | 1998-04-14 12:25:56 +0000 |
| commit | dfcf069d565c347abf3cb7cec80e6ed8432037ba (patch) | |
| tree | cd9620f10084ffa69d7d6ae26284ffd69d4c07a5 /src/keymap.c | |
| parent | 0f94f94657ad7a6a68e64c612285a5e06152def2 (diff) | |
| download | emacs-dfcf069d565c347abf3cb7cec80e6ed8432037ba.tar.gz emacs-dfcf069d565c347abf3cb7cec80e6ed8432037ba.zip | |
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. */ | |||
| 21 | 21 | ||
| 22 | #include <config.h> | 22 | #include <config.h> |
| 23 | #include <stdio.h> | 23 | #include <stdio.h> |
| 24 | #ifdef STDC_HEADERS | ||
| 25 | #include <stdlib.h> | ||
| 26 | #endif | ||
| 24 | #undef NULL | 27 | #undef NULL |
| 25 | #include "lisp.h" | 28 | #include "lisp.h" |
| 26 | #include "commands.h" | 29 | #include "commands.h" |
| @@ -102,7 +105,6 @@ static Lisp_Object define_as_prefix (); | |||
| 102 | static Lisp_Object describe_buffer_bindings (); | 105 | static Lisp_Object describe_buffer_bindings (); |
| 103 | static void describe_command (), describe_translation (); | 106 | static void describe_command (), describe_translation (); |
| 104 | static void describe_map (); | 107 | static void describe_map (); |
| 105 | Lisp_Object Fcopy_keymap (); | ||
| 106 | 108 | ||
| 107 | /* Keymap object support - constructors and predicates. */ | 109 | /* Keymap object support - constructors and predicates. */ |
| 108 | 110 | ||
| @@ -3168,6 +3170,7 @@ Return list of symbols found.") | |||
| 3168 | return apropos_accumulate; | 3170 | return apropos_accumulate; |
| 3169 | } | 3171 | } |
| 3170 | 3172 | ||
| 3173 | void | ||
| 3171 | syms_of_keymap () | 3174 | syms_of_keymap () |
| 3172 | { | 3175 | { |
| 3173 | Lisp_Object tem; | 3176 | Lisp_Object tem; |
| @@ -3305,6 +3308,7 @@ and applies even for keys that have ordinary bindings."); | |||
| 3305 | defsubr (&Sapropos_internal); | 3308 | defsubr (&Sapropos_internal); |
| 3306 | } | 3309 | } |
| 3307 | 3310 | ||
| 3311 | void | ||
| 3308 | keys_of_keymap () | 3312 | keys_of_keymap () |
| 3309 | { | 3313 | { |
| 3310 | Lisp_Object tem; | 3314 | Lisp_Object tem; |