Identify and move common internal libcrypto header files There are header files in crypto/ that are used by a number of crypto/ submodules. Move those to crypto/include/internal and adapt the affected source code and Makefiles. The header files that got moved are: crypto/cryptolib.h crypto/md32_common.h Reviewed-by: Rich Salz <rsalz@openssl.org>
diff --git a/crypto/err/err.c b/crypto/err/err.c index 78e8817..1b94ce5 100644 --- a/crypto/err/err.c +++ b/crypto/err/err.c
@@ -112,7 +112,7 @@ #include <stdio.h> #include <stdarg.h> #include <string.h> -#include "cryptlib.h" +#include "internal/cryptlib.h" #include <openssl/lhash.h> #include <openssl/crypto.h> #include <openssl/buffer.h>
diff --git a/crypto/err/err_prn.c b/crypto/err/err_prn.c index 17c0a92..7a74fea 100644 --- a/crypto/err/err_prn.c +++ b/crypto/err/err_prn.c
@@ -57,7 +57,7 @@ */ #include <stdio.h> -#include "cryptlib.h" +#include "internal/cryptlib.h" #include <openssl/lhash.h> #include <openssl/crypto.h> #include <openssl/buffer.h>