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 | a63601373059ea20c59a3eebbe0ec583f8d20f6d (patch) | |
tree | e269387f926c5aabedc421ac668f15daa821019a /zlib | |
parent | 25dd8b33d7c32146f1ec68638822d79f28ea44f0 (diff) | |
download | mariadb-git-a63601373059ea20c59a3eebbe0ec583f8d20f6d.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 |