diff options
author | Changjiang Yang <yangcha@leidos.com> | 2015-03-30 23:33:11 -0400 |
---|---|---|
committer | Changjiang Yang <yangcha@leidos.com> | 2015-03-30 23:33:11 -0400 |
commit | b4ac6eb92cce438632e44de80ab81c83198b2360 (patch) | |
tree | 8639c1767a4f14bb9c6eb868d29fbbae01a98a5e | |
parent | ba5e6434e2ab94d617637ea21abf840f97ba6593 (diff) |
snprintf is not implemented in Visual Studio 2013 or earlier. Use _snprintf instead.
-rw-r--r-- | src/commonmark.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/commonmark.c b/src/commonmark.c index 23faa7c..31fdcec 100644 --- a/src/commonmark.c +++ b/src/commonmark.c @@ -11,6 +11,10 @@ #include "utf8.h" #include "scanners.h" +#if defined(_MSC_VER) && (_MSC_VER <=1800)
+#define snprintf _snprintf
+#endif + // Functions to convert cmark_nodes to commonmark strings. struct render_state { |