summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-06-27 16:32:04 +0000
committerRichard Levitte <levitte@openssl.org>2002-06-27 16:32:04 +0000
commit4367eb8706605b978d9d8b31ecba20c13f6e08e6 (patch)
treeafecea55230131fe45846c26c2bb2bde070bf463 /crypto
parent0a8a99785b5346cac72be67ff05f1bda03ca85f9 (diff)
DJGPP has some needed header files that other MSDOS/Windows compilers don't have.
Part of PR 75
Diffstat (limited to 'crypto')
-rw-r--r--crypto/engine/hw_aep.c2
1 files changed, 1 insertions, 1 deletions
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 <string.h>
#include <openssl/e_os2.h>
-#ifndef OPENSSL_SYS_MSDOS
+#if !defined(OPENSSL_SYS_MSDOS) || defined(__DJGPP__)
#include <sys/types.h>
#include <unistd.h>
#else