]> git.ipfire.org Git - thirdparty/zlib-ng.git/commitdiff
Remove now obsolete comment 49/head
authortbeu <tbeu@users.noreply.github.com>
Tue, 6 Oct 2015 19:53:40 +0000 (21:53 +0200)
committertbeu <tbeu@users.noreply.github.com>
Tue, 6 Oct 2015 19:53:40 +0000 (21:53 +0200)
... about snprintf() being not available in MSVC

gzguts.h

index 88996f3f0f9b56364fda0ea388878f5e08316a78..17d8732dc99271b37ed0a46c067c678a99ed2144 100644 (file)
--- a/gzguts.h
+++ b/gzguts.h
 #  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
-   the result is assured to fit in the space provided */
+/* 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 */
 #if defined(_MSC_VER) && _MSC_VER < 1900
 #  define snprintf _snprintf
 #endif