This commit is contained in:
Jan (janneke) Nieuwenhuizen 2022-10-19 09:39:36 +02:00
parent 900bd8fc34
commit 20442cae67
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
1 changed files with 2 additions and 3 deletions

View File

@ -27,9 +27,8 @@
off_t
_lseek (int filedes, off_t offset, int whence)
{
return _sys_call3 (SYS_lseek, (int) filedes, (long) offset, (int) whence);
// long long_offset = offset;
// return _sys_call3 (SYS_lseek, filedes, long_offset, whence);
long long_offset = offset;
return _sys_call3 (SYS_lseek, filedes, long_offset, whence);
}
off_t