diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/lread.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/lread.c b/src/lread.c index 11fc04a4f6e..f90bdb2ef2d 100644 --- a/src/lread.c +++ b/src/lread.c | |||
| @@ -40,6 +40,13 @@ Boston, MA 02111-1307, USA. */ | |||
| 40 | #include <sys/inode.h> | 40 | #include <sys/inode.h> |
| 41 | #endif /* lint */ | 41 | #endif /* lint */ |
| 42 | 42 | ||
| 43 | #ifdef MSDOS | ||
| 44 | #if __DJGPP__ < 2 | ||
| 45 | #include <unistd.h> /* to get X_OK */ | ||
| 46 | #endif | ||
| 47 | #include "msdos.h" | ||
| 48 | #endif | ||
| 49 | |||
| 43 | #ifndef X_OK | 50 | #ifndef X_OK |
| 44 | #define X_OK 01 | 51 | #define X_OK 01 |
| 45 | #endif | 52 | #endif |
| @@ -49,10 +56,6 @@ Boston, MA 02111-1307, USA. */ | |||
| 49 | #include <stdlib.h> | 56 | #include <stdlib.h> |
| 50 | #endif | 57 | #endif |
| 51 | 58 | ||
| 52 | #ifdef MSDOS | ||
| 53 | #include "msdos.h" | ||
| 54 | #endif | ||
| 55 | |||
| 56 | #include <math.h> | 59 | #include <math.h> |
| 57 | #endif /* LISP_FLOAT_TYPE */ | 60 | #endif /* LISP_FLOAT_TYPE */ |
| 58 | 61 | ||