diff options
author | beck <> | 2014-05-29 20:21:23 +0000 |
---|---|---|
committer | beck <> | 2014-05-29 20:21:23 +0000 |
commit | d205a2aecb99564cccfbea61c39ebe3b0ddd7fb7 (patch) | |
tree | 0085ebdac711a18932d8d8d531d36f82fce2c8bc /src/lib/libcrypto/err/err_prn.c | |
parent | 6f22007e67d4c2d77b9caea83bc05974d11dbb0d (diff) | |
download | openbsd-d205a2aecb99564cccfbea61c39ebe3b0ddd7fb7.tar.gz openbsd-d205a2aecb99564cccfbea61c39ebe3b0ddd7fb7.tar.bz2 openbsd-d205a2aecb99564cccfbea61c39ebe3b0ddd7fb7.zip |
Everything sane has stdio, and FILE *. we don't need ifdefs for this.
ok to firebomb from tedu@
Diffstat (limited to 'src/lib/libcrypto/err/err_prn.c')
-rw-r--r-- | src/lib/libcrypto/err/err_prn.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/lib/libcrypto/err/err_prn.c b/src/lib/libcrypto/err/err_prn.c index d6b488fee9..7790287a3f 100644 --- a/src/lib/libcrypto/err/err_prn.c +++ b/src/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) | |||
86 | } | 86 | } |
87 | } | 87 | } |
88 | 88 | ||
89 | #ifndef OPENSSL_NO_FP_API | ||
90 | static int | 89 | static int |
91 | print_fp(const char *str, size_t len, void *fp) | 90 | print_fp(const char *str, size_t len, void *fp) |
92 | { | 91 | { |
@@ -103,7 +102,6 @@ ERR_print_errors_fp(FILE *fp) | |||
103 | { | 102 | { |
104 | ERR_print_errors_cb(print_fp, fp); | 103 | ERR_print_errors_cb(print_fp, fp); |
105 | } | 104 | } |
106 | #endif | ||
107 | 105 | ||
108 | static int | 106 | static int |
109 | print_bio(const char *str, size_t len, void *bp) | 107 | print_bio(const char *str, size_t len, void *bp) |