repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
use weak symbols for the POSIX functions that will be used by C threads
[musl.git]
/
src
/
aio
/
aio_fsync.c
blob
6e1a70abe7867762c2740498152076dbc69b43cf
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
);