6e1a70abe7867762c2740498152076dbc69b43cf
[musl] / aio_fsync.c
1 #include <aio.h>
2 #include <errno.h>
3 #include "libc.h"
4
5 int aio_fsync(int op, struct aiocb *cb)
6 {
7         /* FIXME: unsupported */
8         errno = EINVAL;
9         return -1;
10 }
11
12 LFS64(aio_fsync);