summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-04-10 04:10:47 +0000
committerRichard M. Stallman <rms@gnu.org>1996-04-10 04:10:47 +0000
commit80788e38b87e3ff9f8526d28a9284b6975b0b47e (patch)
treeaf05841c4b0469fa1f7fd8880607dfd40878abf8
parent1252ac05b8623deae445dee28af6095d8a9727b7 (diff)
downloademacs-80788e38b87e3ff9f8526d28a9284b6975b0b47e.tar.gz
[MSDOS]: If DJGPP version 2, include fcntl.h and string.h.
-rw-r--r--src/fileio.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/fileio.c b/src/fileio.c
index 3d0e30d1f4e..388d602d87c 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -44,6 +44,10 @@ Boston, MA 02111-1307, USA. */
#ifdef MSDOS
#include "msdos.h"
#include <sys/param.h>
+#if __DJGPP__ >= 2
+#include <fcntl.h>
+#include <string.h>
+#endif
#endif
#include <ctype.h>