summaryrefslogtreecommitdiff
path: root/compiler.h
diff options
context:
space:
mode:
Diffstat (limited to 'compiler.h')
-rw-r--r--compiler.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/compiler.h b/compiler.h
index b3f77c94..8ceb9ee9 100644
--- a/compiler.h
+++ b/compiler.h
@@ -37,4 +37,14 @@
# define _unused
#endif
+/* Some versions of MSVC have these only with underscores in front */
+
+#if !defined(HAVE_SNPRINTF) && defined(HAVE__SNPRINTF)
+# define snprintf _snprintf
+#endif
+
+#if !defined(HAVE_VSNPRINTF) && defined(HAVE__VSNPRINTF)
+# define vsnprintf _vsnprintf
+#endif
+
#endif /* COMPILER_H */