summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/bio/bio.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/bio/bio.h')
-rw-r--r--src/lib/libcrypto/bio/bio.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/lib/libcrypto/bio/bio.h b/src/lib/libcrypto/bio/bio.h
index 67574d9fa4..6809b70e9d 100644
--- a/src/lib/libcrypto/bio/bio.h
+++ b/src/lib/libcrypto/bio/bio.h
@@ -61,9 +61,7 @@
61 61
62#include <openssl/opensslconf.h> 62#include <openssl/opensslconf.h>
63 63
64#ifndef OPENSSL_NO_FP_API
65# include <stdio.h> 64# include <stdio.h>
66#endif
67#include <stdarg.h> 65#include <stdarg.h>
68 66
69#include <openssl/crypto.h> 67#include <openssl/crypto.h>
@@ -619,12 +617,10 @@ int
619BIO_asn1_get_suffix(BIO *b, asn1_ps_func **psuffix, 617BIO_asn1_get_suffix(BIO *b, asn1_ps_func **psuffix,
620asn1_ps_func **psuffix_free); 618asn1_ps_func **psuffix_free);
621 619
622# ifndef OPENSSL_NO_FP_API
623BIO_METHOD *BIO_s_file(void ); 620BIO_METHOD *BIO_s_file(void );
624BIO *BIO_new_file(const char *filename, const char *mode); 621BIO *BIO_new_file(const char *filename, const char *mode);
625BIO *BIO_new_fp(FILE *stream, int close_flag); 622BIO *BIO_new_fp(FILE *stream, int close_flag);
626# define BIO_s_file_internal BIO_s_file 623# define BIO_s_file_internal BIO_s_file
627# endif
628BIO * BIO_new(BIO_METHOD *type); 624BIO * BIO_new(BIO_METHOD *type);
629int BIO_set(BIO *a, BIO_METHOD *type); 625int BIO_set(BIO *a, BIO_METHOD *type);
630int BIO_free(BIO *a); 626int BIO_free(BIO *a);
@@ -694,10 +690,8 @@ BIO_dump_indent_cb(int (*cb)(const void *data, size_t len, void *u),
694void *u, const char *s, int len, int indent); 690void *u, const char *s, int len, int indent);
695int BIO_dump(BIO *b, const char *bytes, int len); 691int BIO_dump(BIO *b, const char *bytes, int len);
696int BIO_dump_indent(BIO *b, const char *bytes, int len, int indent); 692int BIO_dump_indent(BIO *b, const char *bytes, int len, int indent);
697#ifndef OPENSSL_NO_FP_API
698int BIO_dump_fp(FILE *fp, const char *s, int len); 693int BIO_dump_fp(FILE *fp, const char *s, int len);
699int BIO_dump_indent_fp(FILE *fp, const char *s, int len, int indent); 694int BIO_dump_indent_fp(FILE *fp, const char *s, int len, int indent);
700#endif
701struct hostent *BIO_gethostbyname(const char *name); 695struct hostent *BIO_gethostbyname(const char *name);
702/* We might want a thread-safe interface too: 696/* We might want a thread-safe interface too:
703 * struct hostent *BIO_gethostbyname_r(const char *name, 697 * struct hostent *BIO_gethostbyname_r(const char *name,