Index: openssl/crypto/des/enc_writ.c |
=================================================================== |
--- openssl/crypto/des/enc_writ.c (revision 105093) |
+++ openssl/crypto/des/enc_writ.c (working copy) |
@@ -80,6 +80,9 @@ |
int DES_enc_write(int fd, const void *_buf, int len, |
DES_key_schedule *sched, DES_cblock *iv) |
{ |
+#if defined(OPENSSL_NO_POSIX_IO) |
+ return (-1); |
+#else |
#ifdef _LIBC |
extern unsigned long time(); |
extern int write(); |
@@ -172,4 +175,5 @@ |
} |
return(len); |
+#endif /* OPENSSL_NO_POSIX_IO */ |
} |