diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2023-11-23 21:45:11 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2023-11-23 21:45:11 +0100 |
| commit | 6dd899df22f336fe1faee5be414af9973e054656 (patch) | |
| tree | 04125126e80a7a3e0cb937184dc8126d2a8da819 /src/wrapped | |
| parent | 7c4b97961f1f3501d5d741407c80b67f0caf69c7 (diff) | |
| download | box64-6dd899df22f336fe1faee5be414af9973e054656.tar.gz box64-6dd899df22f336fe1faee5be414af9973e054656.zip | |
[ANDROID] This should fix Android build, again and again
Diffstat (limited to 'src/wrapped')
| -rw-r--r-- | src/wrapped/wrappedlibrt.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/wrapped/wrappedlibrt.c b/src/wrapped/wrappedlibrt.c index 16c6bc41..f54f62b7 100644 --- a/src/wrapped/wrappedlibrt.c +++ b/src/wrapped/wrappedlibrt.c @@ -125,27 +125,27 @@ EXPORT int mylio_listio(x64emu_t* emu, int mode, struct aiocb* list[], int nent, #else EXPORT int my_aio_cancel(x64emu_t emu, int fd, void* aiocbp) { - errno = ENNOSYS; + errno = ENOSYS; return -1; } EXPORT int my_aio_read(x64emu_t emu, void* aiocbp) { - errno = ENNOSYS; + errno = ENOSYS; return -1; } EXPORT int my_aio_read64(x64emu_t emu, void* aiocbp) { - errno = ENNOSYS; + errno = ENOSYS; return -1; } EXPORT int my_aio_write(x64emu_t emu, void* aiocbp) { - errno = ENNOSYS; + errno = ENOSYS; return -1; } EXPORT int my_aio_write64(x64emu_t emu, void* aiocbp) { - errno = ENNOSYS; + errno = ENOSYS; return -1; } EXPORT int mylio_listio(x64emu_t* emu, int mode, void* list[], int nent, struct sigevent* sig) |