aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii1998-04-27 14:26:43 +0000
committerEli Zaretskii1998-04-27 14:26:43 +0000
commit7990d02a2ddaebd3d3c4131129b61121d3397e1b (patch)
tree08d3b0714e0d89844db298eb973ee7627cbd57d6
parent5f027cead6be6588045bad49883cfd3bcd5c09f3 (diff)
downloademacs-7990d02a2ddaebd3d3c4131129b61121d3397e1b.tar.gz
emacs-7990d02a2ddaebd3d3c4131129b61121d3397e1b.zip
Include msdos.h after lisp.h.
-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. */
50#include <pwd.h> 50#include <pwd.h>
51#endif 51#endif
52 52
53#ifdef MSDOS
54#include "msdos.h"
55#include <sys/param.h>
56#if __DJGPP__ >= 2
57#include <fcntl.h>
58#include <string.h>
59#endif
60#endif
61
62#include <ctype.h> 53#include <ctype.h>
63 54
64#ifdef VMS 55#ifdef VMS
@@ -104,6 +95,15 @@ extern char *strerror ();
104#include <fcntl.h> 95#include <fcntl.h>
105#endif /* not WINDOWSNT */ 96#endif /* not WINDOWSNT */
106 97
98#ifdef MSDOS
99#include "msdos.h"
100#include <sys/param.h>
101#if __DJGPP__ >= 2
102#include <fcntl.h>
103#include <string.h>
104#endif
105#endif
106
107#ifdef DOS_NT 107#ifdef DOS_NT
108#define CORRECT_DIR_SEPS(s) \ 108#define CORRECT_DIR_SEPS(s) \
109 do { if ('/' == DIRECTORY_SEP) dostounix_filename (s); \ 109 do { if ('/' == DIRECTORY_SEP) dostounix_filename (s); \