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/asn1/a_i2d_fp.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/asn1/a_i2d_fp.c')
-rw-r--r-- | src/lib/libcrypto/asn1/a_i2d_fp.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/lib/libcrypto/asn1/a_i2d_fp.c b/src/lib/libcrypto/asn1/a_i2d_fp.c index 007e612b4a..b9d066754b 100644 --- a/src/lib/libcrypto/asn1/a_i2d_fp.c +++ b/src/lib/libcrypto/asn1/a_i2d_fp.c | |||
@@ -63,7 +63,6 @@ | |||
63 | 63 | ||
64 | #ifndef NO_OLD_ASN1 | 64 | #ifndef NO_OLD_ASN1 |
65 | 65 | ||
66 | #ifndef OPENSSL_NO_FP_API | ||
67 | int | 66 | int |
68 | ASN1_i2d_fp(i2d_of_void *i2d, FILE *out, void *x) | 67 | ASN1_i2d_fp(i2d_of_void *i2d, FILE *out, void *x) |
69 | { | 68 | { |
@@ -79,7 +78,6 @@ ASN1_i2d_fp(i2d_of_void *i2d, FILE *out, void *x) | |||
79 | BIO_free(b); | 78 | BIO_free(b); |
80 | return (ret); | 79 | return (ret); |
81 | } | 80 | } |
82 | #endif | ||
83 | 81 | ||
84 | int | 82 | int |
85 | ASN1_i2d_bio(i2d_of_void *i2d, BIO *out, unsigned char *x) | 83 | ASN1_i2d_bio(i2d_of_void *i2d, BIO *out, unsigned char *x) |
@@ -115,7 +113,6 @@ ASN1_i2d_bio(i2d_of_void *i2d, BIO *out, unsigned char *x) | |||
115 | 113 | ||
116 | #endif | 114 | #endif |
117 | 115 | ||
118 | #ifndef OPENSSL_NO_FP_API | ||
119 | int | 116 | int |
120 | ASN1_item_i2d_fp(const ASN1_ITEM *it, FILE *out, void *x) | 117 | ASN1_item_i2d_fp(const ASN1_ITEM *it, FILE *out, void *x) |
121 | { | 118 | { |
@@ -131,7 +128,6 @@ ASN1_item_i2d_fp(const ASN1_ITEM *it, FILE *out, void *x) | |||
131 | BIO_free(b); | 128 | BIO_free(b); |
132 | return (ret); | 129 | return (ret); |
133 | } | 130 | } |
134 | #endif | ||
135 | 131 | ||
136 | int | 132 | int |
137 | ASN1_item_i2d_bio(const ASN1_ITEM *it, BIO *out, void *x) | 133 | ASN1_item_i2d_bio(const ASN1_ITEM *it, BIO *out, void *x) |