aboutsummaryrefslogtreecommitdiffstats
path: root/src/ath.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ath.c')
-rw-r--r--src/ath.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/ath.c b/src/ath.c
index 6b4667ef..94d5eb1a 100644
--- a/src/ath.c
+++ b/src/ath.c
@@ -78,22 +78,14 @@ ath_self (void)
gpgme_ssize_t
ath_read (int fd, void *buf, size_t nbytes)
{
-#if defined(HAVE_W32CE_SYSTEM) && defined(_MSC_VER)
- return -1; /* Not supported. */
-#else
return read (fd, buf, nbytes);
-#endif
}
gpgme_ssize_t
ath_write (int fd, const void *buf, size_t nbytes)
{
-#if defined(HAVE_W32CE_SYSTEM) && defined(_MSC_VER)
- return -1; /* Not supported. */
-#else
return write (fd, buf, nbytes);
-#endif
}