diff options
author | Bob Beck <beck@cvs.openbsd.org> | 2014-05-29 20:21:24 +0000 |
---|---|---|
committer | Bob Beck <beck@cvs.openbsd.org> | 2014-05-29 20:21:24 +0000 |
commit | 4b83ed84c358f5a49df194b2f225f69533870f5c (patch) | |
tree | 197185e303204be261fd93b5d344721e33d08dc6 /lib/libcrypto/lhash/lhash.h | |
parent | b5a8f988f407de25c016d121edcfc3e2a5272bdc (diff) |
Everything sane has stdio, and FILE *. we don't need ifdefs for this.
ok to firebomb from tedu@
Diffstat (limited to 'lib/libcrypto/lhash/lhash.h')
-rw-r--r-- | lib/libcrypto/lhash/lhash.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/libcrypto/lhash/lhash.h b/lib/libcrypto/lhash/lhash.h index 187a2842436..8147417cd80 100644 --- a/lib/libcrypto/lhash/lhash.h +++ b/lib/libcrypto/lhash/lhash.h @@ -65,9 +65,7 @@ #include <openssl/opensslconf.h> -#ifndef OPENSSL_NO_FP_API #include <stdio.h> -#endif #ifndef OPENSSL_NO_BIO #include <openssl/bio.h> @@ -181,11 +179,9 @@ void lh_doall_arg(_LHASH *lh, LHASH_DOALL_ARG_FN_TYPE func, void *arg); unsigned long lh_strhash(const char *c); unsigned long lh_num_items(const _LHASH *lh); -#ifndef OPENSSL_NO_FP_API void lh_stats(const _LHASH *lh, FILE *out); void lh_node_stats(const _LHASH *lh, FILE *out); void lh_node_usage_stats(const _LHASH *lh, FILE *out); -#endif #ifndef OPENSSL_NO_BIO void lh_stats_bio(const _LHASH *lh, BIO *out); |