summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/des/enc_writ.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/des/enc_writ.c')
-rw-r--r--src/lib/libcrypto/des/enc_writ.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/lib/libcrypto/des/enc_writ.c b/src/lib/libcrypto/des/enc_writ.c
index 2353ac1e89..c2f032c9a6 100644
--- a/src/lib/libcrypto/des/enc_writ.c
+++ b/src/lib/libcrypto/des/enc_writ.c
@@ -80,9 +80,6 @@
80int DES_enc_write(int fd, const void *_buf, int len, 80int DES_enc_write(int fd, const void *_buf, int len,
81 DES_key_schedule *sched, DES_cblock *iv) 81 DES_key_schedule *sched, DES_cblock *iv)
82 { 82 {
83#if defined(OPENSSL_NO_POSIX_IO)
84 return (-1);
85#else
86#ifdef _LIBC 83#ifdef _LIBC
87 extern unsigned long time(); 84 extern unsigned long time();
88 extern int write(); 85 extern int write();
@@ -175,5 +172,4 @@ int DES_enc_write(int fd, const void *_buf, int len,
175 } 172 }
176 173
177 return(len); 174 return(len);
178#endif /* OPENSSL_NO_POSIX_IO */
179 } 175 }