]> git.eshelyaron.com Git - emacs.git/commitdiff
* unexmacosx.c: Include config.h before unistd.h.
authorJan Djärv <jan.h.d@swipnet.se>
Wed, 19 Jan 2011 22:13:54 +0000 (23:13 +0100)
committerJan Djärv <jan.h.d@swipnet.se>
Wed, 19 Jan 2011 22:13:54 +0000 (23:13 +0100)
Fixes: debbugs:7859
src/ChangeLog
src/unexmacosx.c

index 2f8e7a7ceebea67b71b2c5480030635166c6ae7f..79cc893eaae4d6ccbef4226973841199979b197a 100644 (file)
@@ -1,5 +1,7 @@
 2011-01-19  Jan Djärv  <jan.h.d@swipnet.se>
 
+       * unexmacosx.c: Include config.h before unistd.h (Bug#7859).
+
        * nsterm.m (ns_input_file, ns_input_font, ns_input_fontsize)
        (ns_input_line, ns_input_color, ns_input_text, ns_working_text)
        (ns_input_spi_name, ns_input_spi_arg)
index 75d6677f535015b3d416ba0cf12b1c1e3f995f33..d3cf74eb33c8dc5e21d6ccca57492ef3786a7d39 100644 (file)
@@ -91,6 +91,10 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 #include <fcntl.h>
 #include <stdarg.h>
 #include <sys/types.h>
+#include <config.h>
+#undef malloc
+#undef realloc
+#undef free
 #include <unistd.h>
 #include <mach/mach.h>
 #include <mach-o/loader.h>
@@ -98,10 +102,6 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 #if defined (__ppc__)
 #include <mach-o/ppc/reloc.h>
 #endif
-#include <config.h>
-#undef malloc
-#undef realloc
-#undef free
 #ifdef HAVE_MALLOC_MALLOC_H
 #include <malloc/malloc.h>
 #else