diff options
Diffstat (limited to 'lib/libcrypto/err')
-rw-r--r-- | lib/libcrypto/err/err.h | 4 | ||||
-rw-r--r-- | lib/libcrypto/err/err_prn.c | 2 |
2 files changed, 0 insertions, 6 deletions
diff --git a/lib/libcrypto/err/err.h b/lib/libcrypto/err/err.h index 601f56a6246..0396aba7263 100644 --- a/lib/libcrypto/err/err.h +++ b/lib/libcrypto/err/err.h @@ -114,10 +114,8 @@ #include <openssl/opensslconf.h> -#ifndef OPENSSL_NO_FP_API #include <stdio.h> #include <stdlib.h> -#endif #include <openssl/ossl_typ.h> #ifndef OPENSSL_NO_BIO @@ -337,9 +335,7 @@ const char *ERR_func_error_string(unsigned long e); const char *ERR_reason_error_string(unsigned long e); void ERR_print_errors_cb(int (*cb)(const char *str, size_t len, void *u), void *u); -#ifndef OPENSSL_NO_FP_API void ERR_print_errors_fp(FILE *fp); -#endif #ifndef OPENSSL_NO_BIO void ERR_print_errors(BIO *bp); #endif diff --git a/lib/libcrypto/err/err_prn.c b/lib/libcrypto/err/err_prn.c index d6b488fee90..7790287a3f8 100644 --- a/lib/libcrypto/err/err_prn.c +++ b/lib/libcrypto/err/err_prn.c @@ -86,7 +86,6 @@ ERR_print_errors_cb(int (*cb)(const char *str, size_t len, void *u), void *u) } } -#ifndef OPENSSL_NO_FP_API static int print_fp(const char *str, size_t len, void *fp) { @@ -103,7 +102,6 @@ ERR_print_errors_fp(FILE *fp) { ERR_print_errors_cb(print_fp, fp); } -#endif static int print_bio(const char *str, size_t len, void *bp) |