+2011-01-20 Jan Djärv <jan.h.d@swipnet.se>
+
+ * unexmacosx.c: Add comment about include order.
+
2011-01-20 Glenn Morris <rgm@gnu.org>
* minibuf.c (syms_of_minibuf) <read-expression-history>:
be changed accordingly.
*/
-#include <stdio.h>
+/* config.h #define:s malloc/realloc/free and then includes stdlib.h.
+ We want the undefined versions, but if config.h includes stdlib.h
+ with the #define:s in place, the prototypes will be wrong and we get
+ warnings. To prevent that, include stdlib.h before config.h. */
+
#include <stdlib.h>
-#include <fcntl.h>
-#include <stdarg.h>
-#include <sys/types.h>
#include <config.h>
#undef malloc
#undef realloc
#undef free
+#include <stdio.h>
+#include <fcntl.h>
+#include <stdarg.h>
+#include <sys/types.h>
#include <unistd.h>
#include <mach/mach.h>
#include <mach-o/loader.h>