LibC: Add posix_fallocate stub

This commit is contained in:
2026-07-02 19:52:01 +03:00
parent 50fd526e6f
commit 26abd4e18e

View File

@@ -54,3 +54,12 @@ int posix_fadvise(int fd, off_t offset, off_t len, int advice)
(void)advice; (void)advice;
return 0; return 0;
} }
int posix_fallocate(int fd, off_t offset, off_t size)
{
(void)fd;
(void)offset;
(void)size;
fprintf(stddbg, "TODO: posix_fallocate\n");
return 0;
}