diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/emacs.c | 4 | ||||
| -rw-r--r-- | src/lisp.h | 8 |
2 files changed, 8 insertions, 4 deletions
diff --git a/src/emacs.c b/src/emacs.c index 3aa914f22fa..4477f5bc017 100644 --- a/src/emacs.c +++ b/src/emacs.c | |||
| @@ -137,10 +137,6 @@ static | |||
| 137 | bool might_dump; | 137 | bool might_dump; |
| 138 | #endif | 138 | #endif |
| 139 | 139 | ||
| 140 | #if defined DARWIN_OS && !defined CANNOT_DUMP | ||
| 141 | extern void unexec_init_emacs_zone (void); | ||
| 142 | #endif | ||
| 143 | |||
| 144 | /* If true, Emacs should not attempt to use a window-specific code, | 140 | /* If true, Emacs should not attempt to use a window-specific code, |
| 145 | but instead should use the virtual terminal under which it was started. */ | 141 | but instead should use the virtual terminal under which it was started. */ |
| 146 | bool inhibit_window_system; | 142 | bool inhibit_window_system; |
diff --git a/src/lisp.h b/src/lisp.h index ec8a8b1c098..f423a66d5a8 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -3887,6 +3887,14 @@ extern void get_backtrace (Lisp_Object array); | |||
| 3887 | Lisp_Object backtrace_top_function (void); | 3887 | Lisp_Object backtrace_top_function (void); |
| 3888 | extern bool let_shadows_buffer_binding_p (struct Lisp_Symbol *symbol); | 3888 | extern bool let_shadows_buffer_binding_p (struct Lisp_Symbol *symbol); |
| 3889 | 3889 | ||
| 3890 | /* Defined in unexmacosx.c. */ | ||
| 3891 | #if defined DARWIN_OS && !defined CANNOT_DUMP | ||
| 3892 | extern void unexec_init_emacs_zone (void); | ||
| 3893 | extern void *unexec_malloc (size_t); | ||
| 3894 | extern void *unexec_realloc (void *, size_t); | ||
| 3895 | extern void unexec_free (void *); | ||
| 3896 | #endif | ||
| 3897 | |||
| 3890 | #include "emacs-module.h" | 3898 | #include "emacs-module.h" |
| 3891 | 3899 | ||
| 3892 | /* Function prototype for the module Lisp functions. */ | 3900 | /* Function prototype for the module Lisp functions. */ |