X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=tailor.h;h=ea3a9576c07c02f2c700cbfaa79260e74270da8a;hb=975508caa09d733099498ff9f7b8079cd71d7109;hp=8510599e92c6b23fac5af809976a3b2a9a4abff3;hpb=9110d11ac01350aa968fe02f209d51ca7f0b4d50;p=debian%2Fgzip diff --git a/tailor.h b/tailor.h index 8510599..ea3a957 100644 --- a/tailor.h +++ b/tailor.h @@ -1,6 +1,6 @@ /* tailor.h -- target dependent definitions - Copyright (C) 1997-1999, 2002, 2006, 2009-2017 Free Software Foundation, + Copyright (C) 1997-1999, 2002, 2006, 2009-2018 Free Software Foundation, Inc. Copyright (C) 1992-1993 Jean-loup Gailly @@ -45,7 +45,6 @@ # define MAXSEG_64K # ifdef __TURBOC__ # define off_t long -# define HAVE_UTIME_H # else /* MSC */ # define HAVE_SYS_UTIME_H # endif @@ -90,9 +89,6 @@ # define EXPAND(argc,argv) \ {_response(&argc, &argv); _wildcard(&argc, &argv);} # endif -# ifdef __BORLANDC__ -# define HAVE_UTIME_H -# endif # ifdef __ZTC__ # define NO_DIR 1 # include @@ -202,3 +198,11 @@ #ifndef SET_BINARY_MODE # define SET_BINARY_MODE(fd) #endif + +#ifndef FALLTHROUGH +# if __GNUC__ < 7 +# define FALLTHROUGH ((void) 0) +# else +# define FALLTHROUGH __attribute__ ((__fallthrough__)) +# endif +#endif