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_cancel.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/aio/aio_cancel.c') diff --git a/src/aio/aio_cancel.c b/src/aio/aio_cancel.c index 5a753b1f..16fc431f 100644 --- a/src/aio/aio_cancel.c +++ b/src/aio/aio_cancel.c @@ -1,6 +1,7 @@ #include #include #include +#include "libc.h" int aio_cancel(int fd, struct aiocb *cb) { @@ -14,3 +15,5 @@ int aio_cancel(int fd, struct aiocb *cb) } return cb->__err==EINPROGRESS ? AIO_NOTCANCELED : AIO_ALLDONE; } + +LFS64(aio_cancel); -- cgit v1.2.1