diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-03-16 16:59:54 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-03-16 16:59:54 -0700 |
commit | ce701a3393e8f02410dc0d076d5ddf57ef324260 (patch) | |
tree | 47e0891e5842f1bc511b7a3e54e1fbc8ea73ef40 /src/unexmacosx.c | |
parent | 4f63c6bb76e662fe8025969e0e16ab8906e0ba22 (diff) | |
download | emacs-ce701a3393e8f02410dc0d076d5ddf57ef324260.tar.gz |
New file unexec.h, the (simple) interface for unexec.
* deps.mk (emacs.o, unexaix.o, unexcw.o, unexcoff.o, unexelf.o):
(unexhp9k800.o, unexmacosx.o, unexsol.o, unexw32.o):
Depend on unexec.h.
* emacs.c [!defined CANNOT_DUMP]: Include unexec.h.
* unexaix.c, unexcoff.c, unexcw.c, unexelf.c, unexhp9k800.c:
* unexmacosx.c, unexsol.c, unexw32.c: Include unexec.h.
Diffstat (limited to 'src/unexmacosx.c')
-rw-r--r-- | src/unexmacosx.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/unexmacosx.c b/src/unexmacosx.c index 2e46c063e95..0df0bb8451d 100644 --- a/src/unexmacosx.c +++ b/src/unexmacosx.c @@ -95,6 +95,9 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ #undef malloc #undef realloc #undef free + +#include "unexec.h" + #include <stdio.h> #include <fcntl.h> #include <stdarg.h> |