summaryrefslogtreecommitdiff
path: root/src/fcntl/posix_fallocate.c
AgeCommit message (Collapse)AuthorLines
2018-09-12remove spurious inclusion of libc.h for LFS64 ABI aliasesRich Felker-2/+1
the LFS64 macro was not self-documenting and barely saved any characters. simply use weak_alias directly so that it's clear what's being done, and doesn't depend on a header to provide a strange macro.
2014-01-06add some missing LFS64 aliases for fadvise/fallocate functionsRich Felker-0/+3
2012-09-08fix broken fallocate syscall in posix_fallocateRich Felker-1/+1
the syscall takes an extra flag argument which should be zero to meet the POSIX requirements.
2011-09-21update syscalls with off_t arguments to handle argument alignment, if neededRich Felker-2/+2
the arm syscall abi requires 64-bit arguments to be aligned on an even register boundary. these new macros facilitate meeting the abi requirement without imposing significant ugliness on the code.
2011-04-20add syscall wrappers for posix_fadvise, posix_fallocateRich Felker-0/+8