summaryrefslogtreecommitdiff
path: root/src/aio/aio_suspend.c
diff options
context:
space:
mode:
authorSzabolcs Nagy <nsz@port70.net>2014-09-04 22:01:36 +0200
committerRich Felker <dalias@aerifal.cx>2014-09-05 16:02:22 -0400
commit36c30c4ddd92ec3a058d54aac31a5734be6380f8 (patch)
tree1f5b56e6fa434edeffd9f98dca8115bd29fe0d5a /src/aio/aio_suspend.c
parent546f6b322bcafa2452925c19f9607d9689c75f95 (diff)
downloadmusl-36c30c4ddd92ec3a058d54aac31a5734be6380f8.tar.gz
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.
Diffstat (limited to 'src/aio/aio_suspend.c')
-rw-r--r--src/aio/aio_suspend.c3
1 files changed, 3 insertions, 0 deletions
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 <aio.h>
#include <errno.h>
#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);