Swap to using proper windows pipes
[oweals/openssl.git] / crypto / async / arch / async_null.c
index 05b4964eb2dc7da5d78d9481d55d36d1103af790..f015c90fb738746347cebc9f5e32fc99841af3fe 100644 (file)
@@ -91,17 +91,17 @@ int async_pool_can_grow(void) {
     return 0;
 }
 
-int async_pipe(int *pipefds)
+int async_pipe(OSSL_ASYNC_FD *pipefds)
 {
     return -1;
 }
 
-int async_write1(int fd, const void *buf)
+int async_write1(OSSL_ASYNC_FD fd, const void *buf)
 {
     return -1;
 }
 
-int async_read1(int fd, void *buf)
+int async_read1(OSSL_ASYNC_FD fd, void *buf)
 {
     return -1;
 }