aboutsummaryrefslogtreecommitdiff
path: root/src/stdio/__overflow.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2012-06-15header file fixes: multiple include guard consistency and correctnessRich Felker10-18/+18
one file was reusing another file's macro name, and many had inconsistent underscores and application of SYS prefix, etc. patch by Szabolcs Nagy (nsz)
2012-06-14direct syscall to open in __init_security needs O_LARGEFILERich Felker1-1/+1
it probably does not matter for /dev/null, but this should be done consistently anyway.
2012-06-14reorder exit code to defer stdio flush until after dtorsRich Felker1-4/+1
this is required in case dtors use stdio. also remove the old comments; one was cruft from when the code used to be using function pointers and conditional calls, and has little motivation now that we're using weak symbols. the other was just complaining about having to support dtors even though the cost was made essentially zero in the non-use case by the way it's done here.
2012-06-13revert one change in time.h; no evidence BSD_SOURCE should expose these..Rich Felker1-1/+1
2012-06-13fix feature test macros in time.hRich Felker1-5/+2
stime is not _XOPEN_SOURCE, and some functions were missing with _BSD_SOURCE..
2012-06-13add timegm function (inverse of gmtime), nonstandardRich Felker2-0/+12