From 4367eb8706605b978d9d8b31ecba20c13f6e08e6 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Thu, 27 Jun 2002 16:32:04 +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.34.1