@@ -25,23 +25,10 @@ #define BIO_meth_set_ctrl(bio, val) (bio)->ctrl = val; #define BIO_meth_set_create(bio, val) (bio)->create = val; #define BIO_meth_set_destroy(bio, val) (bio)->destroy = val; #endif -#if 0 -/* - * Forward declarations - */ - -static int BioWrite (BIO *h, const char *buf, int num); -static int BioRead (BIO *h, char *buf, int num); -static int BioPuts (BIO *h, const char *str); -static long BioCtrl (BIO *h, int cmd, long arg1, void *ptr); -static int BioNew (BIO *h); -static int BioFree (BIO *h); -#endif - static int BioWrite(BIO *bio, const char *buf, int bufLen) { Tcl_Channel chan; Tcl_Size ret; int tclEofChan, tclErrno;