aboutsummaryrefslogtreecommitdiff
path: root/src/stdlib/wcstod.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2012-09-08add IPPROTO_MAX to in.hRich Felker1-0/+1
2012-09-08fix redundant _Noreturn def in err.hRich Felker1-7/+1
not sure why this was missed in the earlier commit.
2012-09-08remove all remaining redundant __restrict/__inline/_Noreturn defsRich Felker14-76/+14
2012-09-08sysmacros major/minor: result should have type unsigned int, not dev_tRich Felker1-2/+2
2012-09-08add linux tee syscallRich Felker2-0/+9
2012-09-08add linux sync_file_range syscallRich Felker2-0/+20
2012-09-08move fallocate syscall wrapper to linux-specific syscalls dirRich Felker1-0/+0
2012-09-08add linux readahead syscallRich Felker2-0/+9
2012-09-08add fallocate (nonstandardized) functionRich Felker2-0/+12
this is equivalent to posix_fallocate except that it has an extra mode/flags argument to control its behavior, and stores the error in errno rather than returning an error code.
2012-09-08fix broken fallocate syscall in posix_fallocateRich Felker1-1/+1
the syscall takes an extra flag argument which should be zero to meet the POSIX requirements.
2012-09-08add timerfd interfaces (untested)Rich Felker2-0/+35