Refactor the async wait fd logic
[openssl.git] / crypto / async / arch / async_null.c
index 2b1d28eaf3591f75073fda235f5d2def94c42539..03f8ebfa1074080a7f996f0bb7191ef92351204b 100644 (file)
 
 #ifdef ASYNC_NULL
 
-int async_pipe(OSSL_ASYNC_FD *pipefds)
-{
-    return -1;
-}
-
-int async_close_fd(OSSL_ASYNC_FD fd)
-{
-    return 0;
-}
-
-int async_write1(OSSL_ASYNC_FD fd, const void *buf)
-{
-    return -1;
-}
-
-int async_read1(OSSL_ASYNC_FD fd, void *buf)
-{
-    return -1;
-}
-
 int async_global_init(void)
 {
     return 0;