diff options
author | Daniel Fischer <df@sun.com> | 2008-08-13 18:44:05 +0200 |
---|---|---|
committer | Daniel Fischer <df@sun.com> | 2008-08-13 18:44:05 +0200 |
commit | e9067a66898ad9cb134ac8919ee4c63822e0e673 (patch) | |
tree | e269387f926c5aabedc421ac668f15daa821019a /zlib | |
parent | f5bbcba96f763d58dfd2d3e03d5c4dfd0b5f0eec (diff) | |
download | mariadb-git-e9067a66898ad9cb134ac8919ee4c63822e0e673.tar.gz |
let's try to avoid re-defining _vsnprintf on Windows
Diffstat (limited to 'zlib')
-rw-r--r-- | zlib/gzio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/zlib/gzio.c b/zlib/gzio.c index afac5352323..7e90f4928fc 100644 --- a/zlib/gzio.c +++ b/zlib/gzio.c @@ -7,10 +7,10 @@ /* @(#) $Id$ */ -#include "zutil.h" - #include <stdio.h> +#include "zutil.h" + #ifdef NO_DEFLATE /* for compatibility with old definition */ # define NO_GZCOMPRESS #endif |