Mercurial > emacs
changeset 21787:ee3aed578b1d
Include msdos.h after lisp.h.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Mon, 27 Apr 1998 14:26:43 +0000 |
parents | 5f8f1b124f45 |
children | bbc6e91e6fa1 |
files | src/fileio.c |
diffstat | 1 files changed, 9 insertions(+), 9 deletions(-) [+] |
line wrap: on
line diff
--- a/src/fileio.c Mon Apr 27 14:24:08 1998 +0000 +++ b/src/fileio.c Mon Apr 27 14:26:43 1998 +0000 @@ -50,15 +50,6 @@ #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 @@ #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); \