summaryrefslogtreecommitdiff
path: root/src/fileio.c
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>1998-04-27 14:26:43 +0000
committerEli Zaretskii <eliz@gnu.org>1998-04-27 14:26:43 +0000
commit7990d02a2ddaebd3d3c4131129b61121d3397e1b (patch)
tree08d3b0714e0d89844db298eb973ee7627cbd57d6 /src/fileio.c
parent5f027cead6be6588045bad49883cfd3bcd5c09f3 (diff)
downloademacs-7990d02a2ddaebd3d3c4131129b61121d3397e1b.tar.gz
Include msdos.h after lisp.h.
Diffstat (limited to 'src/fileio.c')
-rw-r--r--src/fileio.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/fileio.c b/src/fileio.c
index 57db26dc8ff..b1ad711555d 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -50,15 +50,6 @@ Boston, MA 02111-1307, USA. */
#include <pwd.h>
#endif
-#ifdef MSDOS
-#include "msdos.h"
-#include <sys/param.h>
-#if __DJGPP__ >= 2
-#include <fcntl.h>
-#include <string.h>
-#endif
-#endif
-
#include <ctype.h>
#ifdef VMS
@@ -104,6 +95,15 @@ extern char *strerror ();
#include <fcntl.h>
#endif /* not WINDOWSNT */
+#ifdef MSDOS
+#include "msdos.h"
+#include <sys/param.h>
+#if __DJGPP__ >= 2
+#include <fcntl.h>
+#include <string.h>
+#endif
+#endif
+
#ifdef DOS_NT
#define CORRECT_DIR_SEPS(s) \
do { if ('/' == DIRECTORY_SEP) dostounix_filename (s); \