Fix windows compilation warnings
[oweals/openssl.git] / crypto / async / arch / async_null.c
index f4adda978896449f7de5a8145ff41a068c4c17d1..05b4964eb2dc7da5d78d9481d55d36d1103af790 100644 (file)
@@ -91,5 +91,20 @@ int async_pool_can_grow(void) {
     return 0;
 }
 
+int async_pipe(int *pipefds)
+{
+    return -1;
+}
+
+int async_write1(int fd, const void *buf)
+{
+    return -1;
+}
+
+int async_read1(int fd, void *buf)
+{
+    return -1;
+}
+
 #endif