use weak symbols for the POSIX functions that will be used by C threads
[musl.git] / src / aio / aio_fsync.c
blob6e1a70abe7867762c2740498152076dbc69b43cf
1 #include <aio.h>
2 #include <errno.h>
3 #include "libc.h"
5 int aio_fsync(int op, struct aiocb *cb)
7 /* FIXME: unsupported */
8 errno = EINVAL;
9 return -1;
12 LFS64(aio_fsync);