diff options
Diffstat (limited to '')
-rw-r--r-- | src/lib/libcrypto/bn/bn_mul.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/libcrypto/bn/bn_mul.c b/src/lib/libcrypto/bn/bn_mul.c index fd598b8b3d..b03458d002 100644 --- a/src/lib/libcrypto/bn/bn_mul.c +++ b/src/lib/libcrypto/bn/bn_mul.c | |||
@@ -66,7 +66,7 @@ | |||
66 | #include "cryptlib.h" | 66 | #include "cryptlib.h" |
67 | #include "bn_lcl.h" | 67 | #include "bn_lcl.h" |
68 | 68 | ||
69 | #if defined(OPENSSL_NO_ASM) || !(defined(__i386) || defined(__i386__))/* Assembler implementation exists only for x86 */ | 69 | #if defined(OPENSSL_NO_ASM) || !(defined(__i386) || defined(__i386__)) || defined(__DJGPP__) /* Assembler implementation exists only for x86 */ |
70 | /* Here follows specialised variants of bn_add_words() and | 70 | /* Here follows specialised variants of bn_add_words() and |
71 | bn_sub_words(). They have the property performing operations on | 71 | bn_sub_words(). They have the property performing operations on |
72 | arrays of different sizes. The sizes of those arrays is expressed through | 72 | arrays of different sizes. The sizes of those arrays is expressed through |