Remove NOPROTO definitions and error code comments.
[openssl.git] / ssl / bio_ssl.c
index 689f3a4fd46759ea22a182b1f706c5d4be60c87e..f62cde4e5d5111726537e1b79c66110d1ab214fb 100644 (file)
 #include <openssl/err.h>
 #include <openssl/ssl.h>
 
-#ifndef NOPROTO
 static int ssl_write(BIO *h,char *buf,int num);
 static int ssl_read(BIO *h,char *buf,int size);
 static int ssl_puts(BIO *h,char *str);
 static long ssl_ctrl(BIO *h,int cmd,long arg1,char *arg2);
 static int ssl_new(BIO *h);
 static int ssl_free(BIO *data);
-#else
-static int ssl_write();
-static int ssl_read();
-static int ssl_puts();
-static long ssl_ctrl();
-static int ssl_new();
-static int ssl_free();
-#endif
-
 typedef struct bio_ssl_st
        {
        SSL *ssl; /* The ssl handle :-) */