aboutsummaryrefslogtreecommitdiff
path: root/src/common/stdio.h
Commit message (Collapse)AuthorAgeFilesLines
* Fix usage of snprintf for MSVCPavel Labath2016-01-191-0/+43
Older versions of MSVC don't have a snprintf functions. Some files were already working around that, but not all of them. Instead of copying the logic into every file, I centralize it into a new stdio.h wrapper file and make other files include that. BUG= R=mark@chromium.org Review URL: https://codereview.chromium.org/1602563003 . Patch from Pavel Labath <labath@google.com>.