Use util/mklink.pl instead of util/mklink.sh.
[oweals/openssl.git] / crypto / bio / bio_lib.c
index 9b2577d7a96301a1d64a3c9f65c190245c2439dd..c0bda7a950fcfa551f1f8fc58cacb038fb764778 100644 (file)
 
 #include <stdio.h>
 #include <errno.h>
-#include "crypto.h"
+#include <openssl/crypto.h>
 #include "cryptlib.h"
-#include "bio.h"
-#include "stack.h"
+#include <openssl/bio.h>
+#include <openssl/stack.h>
 
 static STACK *bio_meth=NULL;
 static int bio_meth_num=0;
@@ -137,7 +137,7 @@ int BIO_free(BIO *a)
        return(1);
        }
 
-int BIO_read(BIO *b, char *out, int outl)
+int BIO_read(BIO *b, void *out, int outl)
        {
        int i;
        long (*cb)();