RT3548: Remove unsupported platforms
[openssl.git] / crypto / bio / bio_cb.c
index 9bcbc321d94f3947dbfe12fdcf3df99d06ed4b05..dd21d02468b2229a098f75d646e75243b591a124 100644 (file)
@@ -63,7 +63,7 @@
 #include <openssl/bio.h>
 #include <openssl/err.h>
 
-long MS_CALLBACK BIO_debug_callback(BIO *bio, int cmd, const char *argp,
+long BIO_debug_callback(BIO *bio, int cmd, const char *argp,
             int argi, long argl, long ret)
        {
        BIO *b;
@@ -135,7 +135,7 @@ long MS_CALLBACK BIO_debug_callback(BIO *bio, int cmd, const char *argp,
        b=(BIO *)bio->cb_arg;
        if (b != NULL)
                BIO_write(b,buf,strlen(buf));
-#if !defined(OPENSSL_NO_STDIO) && !defined(OPENSSL_SYS_WIN16)
+#if !defined(OPENSSL_NO_STDIO)
        else
                fputs(buf,stderr);
 #endif