aboutsummaryrefslogtreecommitdiff
path: root/src/process/_Fork.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2020-09-28 18:47:13 -0400
committerRich Felker <dalias@aerifal.cx>2020-10-14 20:27:12 -0400
commit557673603bb553e90106e7d14da6447a5ff82164 (patch)
treec689824388134be6f38046eb8e3927e736d6b515 /src/process/_Fork.c
parentremove long-unused struct __timer from pthread_impl.h (diff)
downloadgrovel-557673603bb553e90106e7d14da6447a5ff82164.tar.gz
grovel-557673603bb553e90106e7d14da6447a5ff82164.tar.xz
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.
Diffstat (limited to 'src/process/_Fork.c')
-rw-r--r--src/process/_Fork.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/process/_Fork.c b/src/process/_Fork.c
index 1f41197c..da063868 100644
--- a/src/process/_Fork.c
+++ b/src/process/_Fork.c
@@ -4,6 +4,7 @@
#include "libc.h"
#include "lock.h"
#include "pthread_impl.h"
+#include "aio_impl.h"
static void dummy(int x) { }
weak_alias(dummy, __aio_atfork);