summaryrefslogtreecommitdiffstats
path: root/libc/stdio/_vfwprintf_internal.c
Commit message (Collapse)AuthorAgeFilesLines
* Factor out the core of vprintf() into separate functionDenis Vlasenko2008-04-091-0/+9
vprintf_internal, so that: * vprintf() does locking and __STDIO_STREAM_TRANS_TO_WRITE thing, then calls vprintf_internal * vsnprintf, vdprintf.c, vasprintf.c use vprintf_internal directly This makes sprintf faster (since it doesn't do any locking) and stops it from pulling in fseek in static compile.