LibC+Kernel: Switch off_t to 64 bits

This commit is contained in:
Jean-Baptiste Boric 2021-03-13 22:02:54 +01:00 committed by Andreas Kling
commit 7a079f7780
Notes: sideshowbarker 2024-07-18 21:15:56 +09:00
7 changed files with 23 additions and 13 deletions

View file

@ -244,7 +244,7 @@ struct SC_mmap_params {
int32_t prot;
int32_t flags;
int32_t fd;
ssize_t offset;
int64_t offset;
StringArgument name;
};