Fix windows compilation warnings

Fix some warnings in the async code when compiling on windows.

Reviewed-by: Rich Salz <rsalz@openssl.org>
This commit is contained in:
Matt Caswell
2015-10-06 10:52:04 +01:00
parent 9f078e1961
commit 134b28f883
4 changed files with 18 additions and 7 deletions

View 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