From: Jim Meyering Date: Sat, 8 Mar 2003 14:30:28 +0000 (+0000) Subject: Remove now-unused #include and #define directives. X-Git-Tag: v4.5.10~63 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3e9e3529917618f4aa0e0d457f31c05fe3ae8638;p=thirdparty%2Fcoreutils.git Remove now-unused #include and #define directives. --- diff --git a/src/sleep.c b/src/sleep.c index 542c8f10fd..f8a818692e 100644 --- a/src/sleep.c +++ b/src/sleep.c @@ -1,5 +1,5 @@ /* sleep - delay for a specified amount of time. - Copyright (C) 84, 1991-1997, 1999-2002 Free Software Foundation, Inc. + Copyright (C) 84, 1991-1997, 1999-2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -19,23 +19,12 @@ #include #include #include -#include #include -#define USE_CLOCK_GETTIME (defined CLOCK_REALTIME && HAVE_CLOCK_GETTIME) -#if ! USE_CLOCK_GETTIME -# include -#endif - -#ifndef TIME_T_MAX -# define TIME_T_MAX TYPE_MAXIMUM (time_t) -#endif - #include "system.h" #include "closeout.h" #include "error.h" #include "long-options.h" -#include "timespec.h" #include "xnanosleep.h" #include "xstrtod.h"