Commit 36e4c7d2 authored by Kent Boortz's avatar Kent Boortz
Browse files

The header "config.h" needs to be included "early" to control other headers.

This time the inclusion of <stdio.h> before "config.h" enabled legacy large
file support, seek64() and similar, on AIX breaking the compile of "gzio.c"
parent 194d6875
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -7,6 +7,11 @@

/* @(#) $Id$ */

/* Need to be included "early" to control other headers */
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <stdio.h>

#include "zutil.h"