summaryrefslogtreecommitdiff
path: root/src/stdio/vasprintf.c
AgeCommit message (Collapse)AuthorLines
2014-06-04simplify vasprintf implementationRich Felker-14/+1
the old implementation preallocated a buffer in order to try to avoid calling vsnprintf more than once. not only did this potentially lead to memory fragmentation from trimming with realloc; it also pulled in realloc/free, which otherwise might not be needed in a static linked program.
2011-02-20cleanup asprintf stuffRich Felker-0/+1
2011-02-12initial check-in, version 0.5.0v0.5.0Rich Felker-0/+27