Adjust to name change

AROSBootstap re-implement some C library calls for static z library that is
linked into it.
This commit is contained in:
deadwood 2024-04-15 15:49:51 +02:00
parent 03cb6edc72
commit 7ebadc50d1
1 changed files with 1 additions and 1 deletions

View File

@ -495,7 +495,7 @@ ssize_t read(int fd, void *buff, size_t len)
return Read((BPTR)fd, buff, (LONG)len);
}
off_t __posixc_lseek(int fd, off_t offset, int whence)
off_t lseek(int fd, off_t offset, int whence)
{
LONG mode = SEEK_SET;
LONG err;