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/eval.c | |
| parent | 0f94f94657ad7a6a68e64c612285a5e06152def2 (diff) | |
| download | emacs-dfcf069d565c347abf3cb7cec80e6ed8432037ba.tar.gz emacs-dfcf069d565c347abf3cb7cec80e6ed8432037ba.zip | |
Fix -Wimplicit warnings.
Diffstat (limited to 'src/eval.c')
| -rw-r--r-- | src/eval.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/eval.c b/src/eval.c index f7fad365036..1f4f852bdcd 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -20,6 +20,11 @@ Boston, MA 02111-1307, USA. */ | |||
| 20 | 20 | ||
| 21 | 21 | ||
| 22 | #include <config.h> | 22 | #include <config.h> |
| 23 | |||
| 24 | #ifdef STDC_HEADERS | ||
| 25 | #include <stdlib.h> | ||
| 26 | #endif | ||
| 27 | |||
| 23 | #include "lisp.h" | 28 | #include "lisp.h" |
| 24 | #include "blockinput.h" | 29 | #include "blockinput.h" |
| 25 | 30 | ||
| @@ -162,6 +167,7 @@ Lisp_Object run_hook_with_args (); | |||
| 162 | Lisp_Object funcall_lambda (); | 167 | Lisp_Object funcall_lambda (); |
| 163 | extern Lisp_Object ml_apply (); /* Apply a mocklisp function to unevaluated argument list */ | 168 | extern Lisp_Object ml_apply (); /* Apply a mocklisp function to unevaluated argument list */ |
| 164 | 169 | ||
| 170 | void | ||
| 165 | init_eval_once () | 171 | init_eval_once () |
| 166 | { | 172 | { |
| 167 | specpdl_size = 50; | 173 | specpdl_size = 50; |
| @@ -173,6 +179,7 @@ init_eval_once () | |||
| 173 | Vrun_hooks = Qnil; | 179 | Vrun_hooks = Qnil; |
| 174 | } | 180 | } |
| 175 | 181 | ||
| 182 | void | ||
| 176 | init_eval () | 183 | init_eval () |
| 177 | { | 184 | { |
| 178 | specpdl_ptr = specpdl; | 185 | specpdl_ptr = specpdl; |
| @@ -199,6 +206,7 @@ call_debugger (arg) | |||
| 199 | return apply1 (Vdebugger, arg); | 206 | return apply1 (Vdebugger, arg); |
| 200 | } | 207 | } |
| 201 | 208 | ||
| 209 | void | ||
| 202 | do_debug_on_call (code) | 210 | do_debug_on_call (code) |
| 203 | Lisp_Object code; | 211 | Lisp_Object code; |
| 204 | { | 212 | { |
| @@ -2893,6 +2901,7 @@ If NFRAMES is more than the number of frames, the value is nil.") | |||
| 2893 | } | 2901 | } |
| 2894 | } | 2902 | } |
| 2895 | 2903 | ||
| 2904 | void | ||
| 2896 | syms_of_eval () | 2905 | syms_of_eval () |
| 2897 | { | 2906 | { |
| 2898 | DEFVAR_INT ("max-specpdl-size", &max_specpdl_size, | 2907 | DEFVAR_INT ("max-specpdl-size", &max_specpdl_size, |