gzip: port to DMF file systems
[debian/gzip] / gzip.c
diff --git a/gzip.c b/gzip.c
index d89bc24a20d9c22da587af21922d20cdc15eed72..66529e0fac586ff228bc752d687d0b54ba43b2b0 100644 (file)
--- a/gzip.c
+++ b/gzip.c
@@ -1,6 +1,6 @@
 /* gzip (GNU zip) -- compress files with zip algorithm and 'compress' interface
 
-   Copyright (C) 1999, 2001-2002, 2006-2007, 2009-2012 Free Software
+   Copyright (C) 1999, 2001-2002, 2006-2007, 2009-2013 Free Software
    Foundation, Inc.
    Copyright (C) 1992-1993 Jean-loup Gailly
 
@@ -74,6 +74,7 @@ static char const *const license_msg[] = {
 #include "ignore-value.h"
 #include "stat-time.h"
 #include "version.h"
+#include "yesno.h"
 
                 /* configuration */
 
@@ -121,10 +122,6 @@ static char const *const license_msg[] = {
 #define OFF_T_MAX (~ (off_t) 0 - OFF_T_MIN)
 #endif
 
-#ifndef SIGPIPE
-# define SIGPIPE 0
-#endif
-
 /* Use SA_NOCLDSTOP as a proxy for whether the sigaction machinery is
    present.  */
 #ifndef SA_NOCLDSTOP