From 557673603bb553e90106e7d14da6447a5ff82164 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Mon, 28 Sep 2020 18:47:13 -0400 Subject: move aio implementation details to a proper internal header also fix the lack of declaration (and thus hidden visibility) in __stdio_close's use of __aio_close. --- src/aio/aio.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/aio/aio.c') diff --git a/src/aio/aio.c b/src/aio/aio.c index f59679c3..b488e3d6 100644 --- a/src/aio/aio.c +++ b/src/aio/aio.c @@ -9,6 +9,7 @@ #include "syscall.h" #include "atomic.h" #include "pthread_impl.h" +#include "aio_impl.h" /* The following is a threads-based implementation of AIO with minimal * dependence on implementation details. Most synchronization is -- cgit 1.4.1