aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1996-04-10 04:10:47 +0000
committerRichard M. Stallman <[email protected]>1996-04-10 04:10:47 +0000
commit01369dc7b431dad65549fab15cfb76fee0fec704 (patch)
tree42aa23bf410aeb991399f897482b3286bcd60f7f
parent79051982ae6792f60092a25b6a18e78e413cc90a (diff)
[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 3d0e30d1f4..388d602d87 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>