changeset 14973:1a852b90dc3e

[MSDOS]: If DJGPP version 2, include fcntl.h and string.h.
author Richard M. Stallman <rms@gnu.org>
date Wed, 10 Apr 1996 04:10:47 +0000
parents a6889b33d21c
children b99490300747
files src/fileio.c
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/fileio.c	Wed Apr 10 04:10:14 1996 +0000
+++ b/src/fileio.c	Wed Apr 10 04:10:47 1996 +0000
@@ -44,6 +44,10 @@
 #ifdef MSDOS
 #include "msdos.h"
 #include <sys/param.h>
+#if __DJGPP__ >= 2
+#include <fcntl.h>
+#include <string.h>
+#endif
 #endif
 
 #include <ctype.h>