]> git.eshelyaron.com Git - emacs.git/commitdiff
Move cancelations up. Include <stdlib.h> if
authorAndreas Schwab <schwab@suse.de>
Mon, 6 Apr 1998 10:17:33 +0000 (10:17 +0000)
committerAndreas Schwab <schwab@suse.de>
Mon, 6 Apr 1998 10:17:33 +0000 (10:17 +0000)
available.

lib-src/movemail.c

index 8d23fc7b8fd5476c69d1b1681c152ed5f93f26fe..7e29ab4150f2ca363418b9107e31c84ea6c26b6e 100644 (file)
@@ -91,6 +91,12 @@ Boston, MA 02111-1307, USA.  */
 #define DISABLE_DIRECT_ACCESS
 #endif /* WINDOWSNT */
 
+/* Cancel substitutions made by config.h for Emacs.  */
+#undef open
+#undef read
+#undef write
+#undef close
+
 #ifdef USG
 #include <fcntl.h>
 #include <unistd.h>
@@ -106,6 +112,10 @@ Boston, MA 02111-1307, USA.  */
 #include <unistd.h>
 #endif
 
+#ifdef STDC_HEADERS
+#include <stdlib.h>
+#endif
+
 #if defined (XENIX) || defined (WINDOWSNT)
 #include <sys/locking.h>
 #endif
@@ -133,12 +143,6 @@ static char *mail_spool_name ();
 #endif
 #endif
 
-/* Cancel substitutions made by config.h for Emacs.  */
-#undef open
-#undef read
-#undef write
-#undef close
-
 #ifndef errno
 extern int errno;
 #endif