/* 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
#include <stdio.h>
#include <assert.h>
#include <sys/types.h>
-#include <time.h>
#include <getopt.h>
-#define USE_CLOCK_GETTIME (defined CLOCK_REALTIME && HAVE_CLOCK_GETTIME)
-#if ! USE_CLOCK_GETTIME
-# include <sys/time.h>
-#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"