From 9063e375e8429bc5958e8e344da9be5b3de17976 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Thu, 27 Jun 2002 16:32:15 +0000 Subject: [PATCH] DJGPP has some needed header files that other MSDOS/Windows compilers don't have. Part of PR 75 --- crypto/engine/hw_aep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/engine/hw_aep.c b/crypto/engine/hw_aep.c index ab36d36a76..8b8380a582 100644 --- a/crypto/engine/hw_aep.c +++ b/crypto/engine/hw_aep.c @@ -60,7 +60,7 @@ #include #include -#ifndef OPENSSL_SYS_MSDOS +#if !defined(OPENSSL_SYS_MSDOS) || defined(__DJGPP__) #include #include #else -- 2.25.1