Bug 1119776, Part 7: Avoid defining snprintf when MSVC provides it (other), r=bsmedberg

This commit is contained in:
Brian Smith
2015-01-08 22:35:33 -08:00
parent 572bdc68e4
commit ebf74f4fbc
23 changed files with 37 additions and 17 deletions

View File

@@ -13,7 +13,7 @@
#include <stdio.h>
#ifdef XP_WIN
#if defined(_MSC_VER) && _MSC_VER < 1900
#define snprintf _snprintf
#endif