summaryrefslogtreecommitdiffstats
path: root/crypto/bio/bio_lib.c
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>2000-05-16 23:01:19 +0000
committerBen Laurie <ben@openssl.org>2000-05-16 23:01:19 +0000
commit371acb22e68ff23128485ce134a9931de889e719 (patch)
treed69e9633373dc07fe39e8e07a0dceef7ec3aa4d8 /crypto/bio/bio_lib.c
parent5de603abc8fe6fedca529ce58d3741b50ff99592 (diff)
Typesafe Thought Police part 4.
Diffstat (limited to 'crypto/bio/bio_lib.c')
-rw-r--r--crypto/bio/bio_lib.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/crypto/bio/bio_lib.c b/crypto/bio/bio_lib.c
index 00163f21bd..77e43763cb 100644
--- a/crypto/bio/bio_lib.c
+++ b/crypto/bio/bio_lib.c
@@ -137,6 +137,9 @@ int BIO_free(BIO *a)
return(1);
}
+void BIO_vfree(BIO *a)
+ { BIO_free(a); }
+
int BIO_read(BIO *b, void *out, int outl)
{
int i;
@@ -532,3 +535,5 @@ unsigned long BIO_number_written(BIO *bio)
if(bio) return bio->num_write;
return 0;
}
+
+IMPLEMENT_STACK_OF(BIO)