X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=lib%2Fxnanosleep.c;h=f2d9e93be3a80648b94f8c33ac4a1c1b26b8da88;hb=083768e30add2d4c53372b98ae64092d1b97ee4b;hp=fcfe3d551dfe2dc7d7e5ec0810f14a93008e613a;hpb=757c9899f9035e2a71fa2c5710b0a0a4d620ad98;p=gnulib.git diff --git a/lib/xnanosleep.c b/lib/xnanosleep.c index fcfe3d551..f2d9e93be 100644 --- a/lib/xnanosleep.c +++ b/lib/xnanosleep.c @@ -13,7 +13,7 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, - Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ /* Mostly written (for sleep.c) by Paul Eggert. Factored out (creating this file) by Jim Meyering. */ @@ -32,16 +32,9 @@ #include #include +#include "intprops.h" #include "timespec.h" -/* The extra casts work around common compiler bugs. */ -#define TYPE_SIGNED(t) (! ((t) 0 < (t) -1)) -/* The outer cast is needed to work around a bug in Cray C 5.0.3.0. - It is necessary at least when t == time_t. */ -#define TYPE_MINIMUM(t) ((t) (TYPE_SIGNED (t) \ - ? ~ (t) 0 << (sizeof (t) * CHAR_BIT - 1) : (t) 0)) -#define TYPE_MAXIMUM(t) ((t) (~ (t) 0 - TYPE_MINIMUM (t))) - #ifndef TIME_T_MAX # define TIME_T_MAX TYPE_MAXIMUM (time_t) #endif