and friends only after including both fcntl.h and unistd.h: some
systems define them on unistd.h.
+2000-09-01 Eli Zaretskii <eliz@is.elta.co.il>
+
+ * movemail.c (toplevel): Remove redundant fcnt.h.
+ [!F_OK]: Provide default definitions only after including both
+ fcntl.h and unistd.h.
+
2000-08-29 Eli Zaretskii <eliz@is.elta.co.il>
* Makefile.in (profile, make-docfile, hexl): Depend on config.h.
#include <stdio.h>
#include <errno.h>
-#include "syswait.h"
#include <getopt.h>
+#ifdef HAVE_UNISTD_H
+#include <unistd.h>
+#endif
#ifdef HAVE_FCNTL_H
#include <fcntl.h>
#endif
+#include "syswait.h"
#ifdef MAIL_USE_POP
#include "pop.h"
#endif
#include <fcntl.h>
#endif /* WINDOWSNT */
-#ifdef HAVE_FCNTL_H
-#include <fcntl.h>
-#endif
#ifndef F_OK
#define F_OK 0
#define X_OK 1
#define R_OK 4
#endif
-#ifdef HAVE_UNISTD_H
-#include <unistd.h>
-#endif
-
#if defined (XENIX) || defined (WINDOWSNT)
#include <sys/locking.h>
#endif