diff options
Diffstat (limited to 'src/lib/libcrypto/bn/bn_mul.c')
-rw-r--r-- | src/lib/libcrypto/bn/bn_mul.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lib/libcrypto/bn/bn_mul.c b/src/lib/libcrypto/bn/bn_mul.c index 8f8fb249ef..721fac19b1 100644 --- a/src/lib/libcrypto/bn/bn_mul.c +++ b/src/lib/libcrypto/bn/bn_mul.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: bn_mul.c,v 1.16 2014/06/12 15:49:28 deraadt Exp $ */ | 1 | /* $OpenBSD: bn_mul.c,v 1.17 2014/07/10 13:58:22 jsing Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -61,8 +61,10 @@ | |||
61 | # define NDEBUG | 61 | # define NDEBUG |
62 | #endif | 62 | #endif |
63 | 63 | ||
64 | #include <stdio.h> | ||
65 | #include <assert.h> | 64 | #include <assert.h> |
65 | #include <stdio.h> | ||
66 | #include <string.h> | ||
67 | |||
66 | #include "cryptlib.h" | 68 | #include "cryptlib.h" |
67 | #include "bn_lcl.h" | 69 | #include "bn_lcl.h" |
68 | 70 | ||