fix broken fallocate syscall in posix_fallocate
[musl] / src / aio / aio_fsync.c
1 #include <aio.h>
2 #include <errno.h>
3
4 int aio_fsync(int op, struct aiocb *cb)
5 {
6         /* FIXME: unsupported */
7         errno = EINVAL;
8         return -1;
9 }