summaryrefslogtreecommitdiff
path: root/gzguts.h
diff options
context:
space:
mode:
authorMark Adler <madler@alumni.caltech.edu>2016-12-30 17:13:31 -0800
committerMark Adler <madler@alumni.caltech.edu>2016-12-30 17:13:31 -0800
commit79b5c5acf0dff798f3436126b080472ef6b7bd65 (patch)
treed82603b72c81decc752819cc8079bb9cd40ea324 /gzguts.h
parentee7d7b5dda25c111e61e19ac7b476c26aa6f3020 (diff)
downloadzlib-79b5c5acf0dff798f3436126b080472ef6b7bd65.tar.gz
Use snprintf() for later versions of Microsoft C.
Diffstat (limited to 'gzguts.h')
-rw-r--r--gzguts.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/gzguts.h b/gzguts.h
index 4f83d6d..f728792 100644
--- a/gzguts.h
+++ b/gzguts.h
@@ -103,11 +103,10 @@
# endif
#endif
-/* unlike snprintf (which is required in C99, yet still not supported by
- Microsoft more than a decade later!), _snprintf does not guarantee null
- termination of the result -- however this is only used in gzlib.c where
+/* unlike snprintf (which is required in C99), _snprintf does not guarantee
+ null termination of the result -- however this is only used in gzlib.c where
the result is assured to fit in the space provided */
-#ifdef _MSC_VER
+#if defined(_MSC_VER) && _MSC_VER < 1900
# define snprintf _snprintf
#endif