summaryrefslogtreecommitdiff
path: root/lib/snprintf.c
AgeCommit message (Collapse)AuthorFilesLines
2007-10-19Formatting: kill off "stealth whitespace"H. Peter Anvin1-1/+0
"Stealth whitespace" makes it harder to read diffs, and just generally cause unwanted weirdness. Do a source-wide pass to get rid of it.
2007-10-02Portability fixesH. Peter Anvin1-0/+2
Concentrate compiler dependencies to compiler.h; make sure compiler.h is included first in every .c file (since some prototypes may depend on the presence of feature request macros.) Actually use the conditional inclusion of various functions (totally broken in previous releases.)
2007-09-28Add substitutes for snprintf() and vsnprintf()H. Peter Anvin1-0/+24
To deal with fools^Wpeople trying to keep really old systems alive, create a proper framework for substitution functions, and make it possible to deal with the lack of snprintf/vsnprintf in particular.