From 36c30c4ddd92ec3a058d54aac31a5734be6380f8 Mon Sep 17 00:00:00 2001 From: Szabolcs Nagy Date: Thu, 4 Sep 2014 22:01:36 +0200 Subject: add missing legacy LFS *64 symbol aliases versionsort64, aio*64 and lio*64 symbols were missing, they are only needed for glibc ABI compatibility, on the source level dirent.h and aio.h already redirect them. --- src/aio/aio_suspend.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/aio/aio_suspend.c') diff --git a/src/aio/aio_suspend.c b/src/aio/aio_suspend.c index 39a1d3a2..dcdf6019 100644 --- a/src/aio/aio_suspend.c +++ b/src/aio/aio_suspend.c @@ -1,6 +1,7 @@ #include #include #include "pthread_impl.h" +#include "libc.h" /* Due to the requirement that aio_suspend be async-signal-safe, we cannot * use any locks, wait queues, etc. that would make it more efficient. The @@ -55,3 +56,5 @@ int aio_suspend(const struct aiocb *const cbs[], int cnt, const struct timespec } } } + +LFS64(aio_suspend); -- cgit v1.2.1