summaryrefslogtreecommitdiff
path: root/src/aio/aio_fsync.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_fsync.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_fsync.c')
-rw-r--r--src/aio/aio_fsync.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/aio/aio_fsync.c b/src/aio/aio_fsync.c
index 0ac6ea87..6e1a70ab 100644
--- a/src/aio/aio_fsync.c
+++ b/src/aio/aio_fsync.c
@@ -1,5 +1,6 @@
#include <aio.h>
#include <errno.h>
+#include "libc.h"
int aio_fsync(int op, struct aiocb *cb)
{
@@ -7,3 +8,5 @@ int aio_fsync(int op, struct aiocb *cb)
errno = EINVAL;
return -1;
}
+
+LFS64(aio_fsync);