summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/dh/dh_prn.c
diff options
context:
space:
mode:
authorbeck <>2014-05-29 20:21:23 +0000
committerbeck <>2014-05-29 20:21:23 +0000
commitf60b3b3365842d8869513a7e36981671cd726939 (patch)
tree0085ebdac711a18932d8d8d531d36f82fce2c8bc /src/lib/libcrypto/dh/dh_prn.c
parentdc6328fe23d92fbfdbeb94ca011ea0d7a563935f (diff)
downloadopenbsd-f60b3b3365842d8869513a7e36981671cd726939.tar.gz
openbsd-f60b3b3365842d8869513a7e36981671cd726939.tar.bz2
openbsd-f60b3b3365842d8869513a7e36981671cd726939.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/dh/dh_prn.c')
-rw-r--r--src/lib/libcrypto/dh/dh_prn.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/lib/libcrypto/dh/dh_prn.c b/src/lib/libcrypto/dh/dh_prn.c
index ae58c2ac87..9745798628 100644
--- a/src/lib/libcrypto/dh/dh_prn.c
+++ b/src/lib/libcrypto/dh/dh_prn.c
@@ -61,7 +61,6 @@
61#include <openssl/evp.h> 61#include <openssl/evp.h>
62#include <openssl/dh.h> 62#include <openssl/dh.h>
63 63
64#ifndef OPENSSL_NO_FP_API
65int DHparams_print_fp(FILE *fp, const DH *x) 64int DHparams_print_fp(FILE *fp, const DH *x)
66 { 65 {
67 BIO *b; 66 BIO *b;
@@ -77,4 +76,3 @@ int DHparams_print_fp(FILE *fp, const DH *x)
77 BIO_free(b); 76 BIO_free(b);
78 return(ret); 77 return(ret);
79 } 78 }
80#endif