From 01369dc7b431dad65549fab15cfb76fee0fec704 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 10 Apr 1996 04:10:47 +0000 Subject: [PATCH] [MSDOS]: If DJGPP version 2, include fcntl.h and string.h. --- src/fileio.c | 4 ++++ 1 file changed, 4 insertions(+) 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 +#if __DJGPP__ >= 2 +#include +#include +#endif #endif #include -- 2.39.2