From 30cc4148677e088e8e135936f3c494249c2bf514 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Tue, 15 Mar 2016 15:45:42 -0700 Subject: [PATCH] gzip: port to AIX 7.1 + xlc V12.1 * inflate.c, unlzw.c, util.c: Include tailor.h after including any system include file that might in turn include signal.h for the first time, so that SIGPIPE is not #defined to 0 prematurely, which clashes with signal.h's SIGPIPE. --- inflate.c | 2 +- unlzw.c | 2 +- util.c | 4 +--- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/inflate.c b/inflate.c index b9201bb..ff2be7e 100644 --- a/inflate.c +++ b/inflate.c @@ -116,10 +116,10 @@ */ #include -#include "tailor.h" #include +#include "tailor.h" #include "gzip.h" #define slide window diff --git a/unlzw.c b/unlzw.c index 69a47b4..d5b01f5 100644 --- a/unlzw.c +++ b/unlzw.c @@ -8,11 +8,11 @@ */ #include -#include "tailor.h" #include #include +#include "tailor.h" #include "gzip.h" #include "lzw.h" diff --git a/util.c b/util.c index 522d6ef..c06bcc4 100644 --- a/util.c +++ b/util.c @@ -21,15 +21,13 @@ #include #include #include - -#include "tailor.h" - #include #include #include #include #include +#include "tailor.h" #include "gzip.h" #include -- 2.47.2