Mercurial > emacs
diff src/unexmacosx.c @ 57397:8434603cae5b
config.in (HAVE_MALLOC_MALLOC_H): Regenerate
macterm.c (mac_check_for_quit_char): Remove warning for using
NULL where 0 should be used
unexmacosx.c: Use malloc/malloc.h on Tiger instead of
objc/malloc.h
mac.c: Include time.h for Tiger compatibility
| author | Steven Tamm <steventamm@mac.com> |
|---|---|
| date | Fri, 08 Oct 2004 18:38:17 +0000 |
| parents | 349eb7d143cf |
| children | 5517682762f6 ff0e824afa37 |
line wrap: on
line diff
--- a/src/unexmacosx.c Fri Oct 08 18:36:47 2004 +0000 +++ b/src/unexmacosx.c Fri Oct 08 18:38:17 2004 +0000 @@ -99,7 +99,12 @@ #if defined (__ppc__) #include <mach-o/ppc/reloc.h> #endif +#if defined (HAVE_MALLOC_MALLOC_H) +#include <malloc/malloc.h> +#else #include <objc/malloc.h> +#endif + #define VERBOSE 1
