summaryrefslogtreecommitdiff
path: root/lib/warnless.h
diff options
context:
space:
mode:
authorMarc Hoersken <info@marc-hoersken.de>2014-02-16 11:03:22 +0100
committerMarc Hoersken <info@marc-hoersken.de>2014-02-16 11:03:22 +0100
commit6239146e931fd3127f6994975a56d1b4884a708a (patch)
tree790e273e5e429e8b7fc15a753414f2f3082ece86 /lib/warnless.h
parentdc0f8c04ec4cddcc80cc76839da7f53c08815d9c (diff)
downloadcurl-6239146e931fd3127f6994975a56d1b4884a708a.tar.gz
warnless: add wrapper function for read and write on Windows
Diffstat (limited to 'lib/warnless.h')
-rw-r--r--lib/warnless.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/warnless.h b/lib/warnless.h
index f22f0bae4..93195f6fe 100644
--- a/lib/warnless.h
+++ b/lib/warnless.h
@@ -60,6 +60,21 @@ curl_socket_t curlx_sitosk(int i);
#endif /* USE_WINSOCK */
+#if defined(WIN32) || defined(_WIN32)
+
+ssize_t curlx_read(int fd, void *buf, size_t count);
+
+ssize_t curlx_write(int fd, const void *buf, size_t count);
+
+#ifndef BUILDING_WARNLESS_C
+# undef read
+# define read(fd, buf, count) curlx_read(fd, buf, count)
+# undef write
+# define write(fd, buf, count) curlx_write(fd, buf, count)
+#endif
+
+#endif /* WIN32 || _WIN32 */
+
#if defined(__INTEL_COMPILER) && defined(__unix__)
int curlx_FD_ISSET(int fd, fd_set *fdset);